QlbrcDtoTrackedWithoutId.cs 337 B

1234567891011
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. namespace Quadarax.Application.QLiberace.Common.Dtos
  3. {
  4. public class QlbrcDtoTrackedWithoutId : QlbrcDtoWithoutId, ITracked
  5. {
  6. public DateTime Created { get; }
  7. public DateTime? Modified { get; }
  8. public string Modifier { get; } = null!;
  9. }
  10. }