VzEntityDto.cs 224 B

123456789101112
  1. #nullable enable
  2. namespace VberZero.AppService.Base.Dto;
  3. public class VzEntityDto : VzEntityDto<string>
  4. {
  5. }
  6. public class VzEntityDto<TPrimaryKey> : IVzEntityDto<TPrimaryKey>
  7. {
  8. public TPrimaryKey? Id { get; set; }
  9. }