- using Quadarax.Foundation.Core.Data.Entity;
- namespace qdr.app.bundleboiler.data.Model
- {
- public abstract class DmBaseEntity : Entity<long>
- {
- /// <summary>
- /// The date and time the record was created.
- /// </summary>
- public DateTime Created { get; set; }
- /// <summary>
- /// The date and time the record was last changed.
- /// </summary>
- public DateTime Changed { get; set; }
- }
- }
|