//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace SvetoforVKBot.Data { using System; using System.Collections.Generic; public partial class ProductsDostavka { public int id { get; set; } public string idIiko { get; set; } public string article { get; set; } public int colorId { get; set; } public int categoryId { get; set; } public string name { get; set; } public string fullName { get; set; } public string description { get; set; } public string descriptionCarousel { get; set; } public string photo { get; set; } public string photoCarousel { get; set; } public decimal price { get; set; } public string additions { get; set; } public string recommends { get; set; } public string weekDays { get; set; } public int timeLunch { get; set; } public int kkal { get; set; } public decimal belki { get; set; } public decimal zhiry { get; set; } public decimal uglevody { get; set; } public string foodType { get; set; } } }