You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PayTemplatePageInputDto.cs 347 B

1 year ago
11 months ago
1 year ago
123456789101112131415
  1. 
  2. using BPA.KitChen.GroupMeal.Application.BaseDto;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.KitChen.GroupMeal.Application.Service.Applet.Dtos
  9. {
  10. public class PayTemplatePageInputDto: PageInputBase
  11. {
  12. public string Name { get; set; }
  13. }
  14. }