| 1234567891011 |
- using Quadarax.Application.QLiberace.Common.Entities.Base;
- namespace Quadarax.Application.QLiberace.Base.Entities.Base
- {
- public class QlbrcEntityTrackedWithoutId: QlbrcEntityWithId, ITracked
- {
- public DateTime Created { get; protected set; }
- public DateTime? Modified { get; protected set;}
- public string Modifier { get; protected set;}
- }
- }
|