20 lines
532 B
C#
20 lines
532 B
C#
|
using DataModels.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.ViewModels
|
|||
|
{
|
|||
|
public class SupplyViewModel
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
public string SupplierName { get; set; } = string.Empty;
|
|||
|
public double Price { get; set; }
|
|||
|
public Dictionary<Guid, string> Products { get; set; } = new();
|
|||
|
public DateTime Date { get; set; }
|
|||
|
public SupplyStatus Status { get; set; }
|
|||
|
}
|
|||
|
}
|