COP-17/WinFormsProject/Contracts/ViewModels/ProviderViewModel.cs

19 lines
446 B
C#
Raw Normal View History

2023-11-15 22:51:44 +04:00
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 byte[] Logo { get; set; }
public string Number { get; set; }
public int Id { get; set; }
}
}