MoveFunctionDto.cs 486 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Abp.Domain.Entities;
  8. namespace ShwasherSys.BaseSysInfo.Functions.Dto
  9. {
  10. public class MoveUpFunctionDto : Entity<int>
  11. {
  12. [Required]
  13. public int PrevId { get; set; }
  14. }
  15. public class MoveDownFunctionDto : Entity<int>
  16. {
  17. [Required]
  18. public int NextId { get; set; }
  19. }
  20. }