16 lines
362 B
C#
16 lines
362 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.ViewModels
|
|||
|
{
|
|||
|
public class SupplierViewModel
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public Dictionary<string, int> AvailibleProducts = new();
|
|||
|
}
|
|||
|
}
|