Wonky.Client/Wonky.Entity/DTO/EvaluationEditView.cs

21 lines
486 B
C#
Raw Normal View History

2023-04-24 14:00:24 +02:00
namespace Wonky.Entity.DTO;
public class EvaluationEditView
{
2023-04-24 18:09:40 +02:00
public string Content { get; set; } = "";
public string Description { get; set; } = "";
public string EvaluationDate { get; set; } = "";
2023-04-24 14:00:24 +02:00
2023-04-24 18:09:40 +02:00
public string EvaluationId { get; set; } = "";
public string ManagerId { get; set; } = "";
2023-04-24 14:00:24 +02:00
2023-04-24 18:09:40 +02:00
public string ManagerName { get; set; } = "";
public string MemberId { get; set; } = "";
2023-04-24 14:00:24 +02:00
2023-04-24 18:09:40 +02:00
public string MemberName { get; set; } = "";
}