SUBD_Aleikin/Restaurant/RestaurantContracts/ViewModels/ProviderViewModel.cs
Артём Алейкин e52b239c08 BusinessLogic,
Contracts,
DataModels,
View(пока пусто)
2023-05-02 22:51:41 +04:00

22 lines
572 B
C#

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