ISoftDelete.cs 114 B

1234567
  1. namespace VCommon.VEntity
  2. {
  3. public interface ISoftDelete
  4. {
  5. bool IsAbolish { get; set; }
  6. }
  7. }