IHaveLastModificationUserId.cs 202 B

12345678910
  1. using System;
  2. namespace VCommon.VEntity
  3. {
  4. //TODO: 移动到 VApplication.VEntity
  5. public interface IHaveLastModificationUserId
  6. {
  7. Guid? LastModificationUserId { get; set; }
  8. }
  9. }