IHaveLastModificationTime.cs 159 B

123456789
  1. using System;
  2. namespace VCommon.VEntity
  3. {
  4. public interface IHaveLastModificationTime
  5. {
  6. DateTime? LastModificationTime { get; set; }
  7. }
  8. }