- using System.ComponentModel.DataAnnotations;
- using Abp.Domain.Entities;
- namespace WePlatform.BaseSystem.Functions.Dto
- {
- public class MoveUpFunctionDto : Entity<int>
- {
- [Required]
- public int PrevId { get; set; }
- }
- public class MoveDownFunctionDto : Entity<int>
- {
- [Required]
- public int NextId { get; set; }
- }
- }
|