QlbrcEntityTrackedWithoutId.cs 331 B

123456789
  1. namespace Quadarax.Application.QLiberace.Common.Entities.Base
  2. {
  3. public abstract class QlbrcEntityTrackedWithoutId: QlbrcEntityWithId, ITracked
  4. {
  5. public DateTime Created { get; protected set; }
  6. public DateTime? Modified { get; protected set;}
  7. public string Modifier { get; protected set;}
  8. }
  9. }