123456789101112131415161718 |
- using System;
- namespace Mpeg4ConverterTool
- {
- internal abstract class TrackableEntity : EntityBase
- {
- public bool IsDeleted { get; set; }
- protected TrackableEntity() : base()
- {
- }
- protected TrackableEntity(string id, DateTime createTime) : base(id, createTime)
- {
- IsDeleted = false;
- }
- }
- }
|