hotelidbreakfast.cs 689 B

1234567891011121314151617181920212223
  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 hotelidbreakfast
  9. {
  10. private int tid;
  11. private string hotelid;
  12. private float breakfastPrice;
  13. private int isdel;
  14. private int diid;
  15. public int Tid { get => tid; set => tid = value; }
  16. public string Hotelid { get => hotelid; set => hotelid = value; }
  17. public float BreakfastPrice { get => breakfastPrice; set => breakfastPrice = value; }
  18. public int Isdel { get => isdel; set => isdel = value; }
  19. public int Diid { get => diid; set => diid = value; }
  20. }
  21. }