Wonky.Client/Wonky.Entity/Views/WorkplaceListView.cs
2022-07-31 10:12:28 +02:00

9 lines
No EOL
259 B
C#

namespace Wonky.Entity.Views;
public class WorkplaceListView
{
public string WorkplaceId { get; set; } = "";
public string Name { get; set; } = "";
public string Description { get; set; } = "";
public string ShortUrl { get; set; } = "";
}