VzTreeMoveDto.cs 265 B

1234567891011
  1. using System.ComponentModel.DataAnnotations;
  2. using VberZero.AppService.Base.Dto;
  3. namespace VberZero.AppService.Base.TreeBase.Dto;
  4. public class VzTreeMoveDto<TPrimaryKey> : VzEntityDto<TPrimaryKey>
  5. {
  6. [Required]
  7. public TPrimaryKey MoveId { get; set; }
  8. }