CostTypeHotelNumber.cs 614 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Models
  7. {
  8. public class CostTypeHotelNumber
  9. {
  10. public int id { get; set; }
  11. public int ASGR { get; set; }
  12. public int BSGR { get; set; }
  13. public int ATBR { get; set; }
  14. public int BTBR { get; set; }
  15. public int AJSES { get; set; }
  16. public int BJSES { get; set; }
  17. public int ASUITE { get; set; }
  18. public int BSUITE { get; set; }
  19. public int DIID { get; set; }
  20. public int IsDel { get; set; }
  21. }
  22. }