Wonky.Client/Wonky.Entity/Views/WorkplaceListView.cs

9 lines
259 B
C#
Raw Normal View History

2022-07-31 10:12:28 +02:00
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; } = "";
}