PIbd-32_Bondarenko_M.S._COP_16/WinForm/Contracts/ViewModels/ProviderViewModel.cs
2023-11-01 21:10:48 +04:00

20 lines
517 B
C#

using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class ProviderViewModel : IProviderModel
{
public string Name { get; set; }
public string Type { get; set; }
public string Furniture { get; set; }
public DateTime? SupplyDate { get; set; }
public string? SupplyDateTime { get; set; }
public int Id { get; set; }
}
}