using System; namespace VCommon.VEntity { public interface IHaveLastModificationTime { DateTime? LastModificationTime { get; set; } } }