Wonky.Client/Wonky.Entity/Views/SupportSupervisorView.cs

8 lines
212 B
C#
Raw Permalink Normal View History

2023-04-24 18:09:40 +02:00
namespace Wonky.Entity.Views;
2023-04-26 17:00:53 +02:00
public class SupportSupervisorView
2023-04-24 18:09:40 +02:00
{
2023-04-26 17:00:53 +02:00
public string SupervisorId { get; set; } = "";
2023-04-24 18:09:40 +02:00
public string UserId { get; set; } = "";
public string FullName { get; set; } = "";
}