IHaveLastModificationUserId.cs 159 B

123456789
  1. using System;
  2. namespace VCommon.VEntity
  3. {
  4. public interface IHaveLastModificationUserId
  5. {
  6. Guid? LastModificationUserId { get; set; }
  7. }
  8. }