7 lines
189 B
C#
7 lines
189 B
C#
namespace FictionArchive.Service.Shared.MassTransit.Contracts;
|
|
|
|
/// <summary>
|
|
/// Marker interface for commands (do something, single consumer)
|
|
/// </summary>
|
|
public interface ICommand { }
|