Wonky.Client/Wonky.Entity/Views/WorkplaceInventory.cs

13 lines
411 B
C#
Raw Normal View History

2023-05-21 08:23:47 +02:00
using System.Collections.Generic;
2023-04-02 14:39:23 +02:00
using System.Diagnostics.Contracts;
namespace Wonky.Entity.Views;
public class WorkplaceInventory
{
public string WorkplaceId { get; set; } = "";
public string CompanyName { get; set; } = "";
public string WorkplaceName { get; set; } = "";
public string WorkplaceLink { get; set; } = "";
public List<WorkplaceProduct> Products { get; set; } = new();
}