Wonky.Client/Wonky.Entity/Views/WorkplaceInventory.cs
Frede Hundewadt 532cd08827 WIP
2023-05-21 08:23:47 +02:00

13 lines
No EOL
411 B
C#

using System.Collections.Generic;
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();
}