meysamhadeli a6f7bd46d5 - add flight read models
- add aircraft read models
- add airport read models
2022-07-15 18:36:41 +04:30

12 lines
269 B
C#

using BuildingBlocks.IdsGenerator;
using BuildingBlocks.Utils;
public interface IInternalCommand
{
public long Id => SnowFlakIdGenerator.NewId();
public DateTime OccurredOn => DateTime.Now;
public string Type => TypeProvider.GetTypeName(GetType());
}