Wonky.Client/Wonky.Entity/Views/WorkplaceDocInfo.cs
Frede Hundewadt 7111ec5676 wip: v148.1
2023-05-28 14:12:20 +02:00

13 lines
No EOL
409 B
C#

using System.Collections.Generic;
using System.Diagnostics.Contracts;
namespace Wonky.Entity.Views;
public class WorkplaceDocInfo
{
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();
}