CreateOrUpdateDictionaryDto.cs 346 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace BaseService.BaseData.DataDictionaryManagement.Dto
  6. {
  7. public class CreateOrUpdateDictionaryDto
  8. {
  9. [Required]
  10. public string Name { get; set; }
  11. public string Description { get; set; }
  12. }
  13. }