AirTicketResDto.cs 335 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.Groups
  7. {
  8. public class AirTicketResDto
  9. {
  10. public int UserId { get; set; }
  11. }
  12. public class AirTicketResListDto
  13. {
  14. public int DiId { get; set; }
  15. }
  16. }