using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { public class ViewbreakfastPrice { /// /// 早餐表费用 /// public float breakfastPrice { get; set; } /// /// 汇率 /// public float DayRate { get; set; } /// /// 转化为人民币的金额 /// public float RMBPrice { get; set; } /// /// C表费用 /// public float PayMoney { get => payMoney; set => payMoney = value; } /// /// 酒店名称 /// public string HotelName { get => hotelName; set => hotelName = value; } /// /// 币种id /// public int PaymentCurrency { get => paymentCurrency; set => paymentCurrency = value; } /// /// 城市名称 /// public string City { get => city; set => city = value; } /// /// 币种名 /// public string PayCurrencyName { get => payCurrencyName; set => payCurrencyName = value; } private string payCurrencyName; private float payMoney; private string hotelName; private int paymentCurrency; private string city; } }