- using System.ComponentModel.DataAnnotations;
- using VberZero.AppService.Base.Dto;
- namespace VberZero.AppService.Base.TreeBase.Dto;
- public class VzTreeMoveDto<TPrimaryKey> : VzEntityDto<TPrimaryKey>
- {
- [Required]
- public TPrimaryKey MoveId { get; set; }
- }
|