GetDictionaryDetailInputDto.cs 306 B

123456789101112
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using Volo.Abp.Application.Dtos;
  4. namespace BaseService.BaseData.DataDictionaryManagement.Dto
  5. {
  6. public class GetDictionaryDetailInputDto: PagedAndSortedResultRequestDto
  7. {
  8. [Required]
  9. public Guid Pid { get; set; }
  10. }
  11. }