using RestaurantDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RestaurantContracts.ViewModels { public class ProviderViewModel : IProviderModel { public int Id { get; set; } [DisplayName("Название поставщика")] public string Name { get; set; } = string.Empty; [DisplayName("Юридический адресс")] public string Address { get; set; } = string.Empty; } }