Wonky.Client/Wonky.Entity/DTO/KrvSignatureLabels.cs

10 lines
344 B
C#
Raw Permalink Normal View History

2023-04-08 17:46:26 +02:00
namespace Wonky.Entity.DTO;
public class KrvSignatureLabels
{
public string AuthoredByLabel { get; set; } = "";
public string ApprovedByLabel { get; set; } = "";
public string ApprovedDateLabel { get; set; } = "";
public string RevisionDateLabel { get; set; } = "";
public string FollowupDateLabel { get; set; } = "";
}