- Programmiersprache von VSC zu C# geändert - Framework von .NET Framework zu .NET geändert
20 lines
614 B
C#
20 lines
614 B
C#
using EnvelopeGenerator.Domain.Constants;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.ServiceHost.Jobs.FinalizeDocument;
|
|
|
|
public class ReportItem
|
|
{
|
|
public Envelope? Envelope { get; set; }
|
|
public int EnvelopeId { get; set; }
|
|
public string EnvelopeTitle { get; set; } = string.Empty;
|
|
public string EnvelopeSubject { get; set; } = string.Empty;
|
|
|
|
public EnvelopeStatus ItemStatus { get; set; }
|
|
|
|
public string ItemStatusTranslated => ItemStatus.ToString();
|
|
|
|
public string ItemUserReference { get; set; } = string.Empty;
|
|
public DateTime ItemDate { get; set; }
|
|
}
|