SUBD_Aleikin/Restaurant/RestaurantContracts/ViewModels/ProviderViewModel.cs

22 lines
572 B
C#
Raw Normal View History

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;
}
}