using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { public class hotelidbreakfast { private int tid; private string hotelid; private float breakfastPrice; private int isdel; private int diid; public int Tid { get => tid; set => tid = value; } public string Hotelid { get => hotelid; set => hotelid = value; } public float BreakfastPrice { get => breakfastPrice; set => breakfastPrice = value; } public int Isdel { get => isdel; set => isdel = value; } public int Diid { get => diid; set => diid = value; } } }