Files
BeWoPlaner/BeWoPlanerMobil/Models/ExternalSignatureModel.cs

27 lines
766 B
C#
Raw Normal View History

namespace BeWoPlanerMobil.Models
{
public class ExternalSignatureModel
{
public string Tenant { get; set; }
public string ErrorMessage { get; set; }
public string Token { get; set; }
public string TestInfo { get; set; }
public string SupportConceptInfo { get; set; }
public string CategoryInfo { get; set; }
public string ServiceDescriptionInfo { get; set; }
public string EmployeeInfo { get; set; }
public string ServiceRecordDateTime { get; set; }
public long? ServiceRecordOid { get; set; }
public string CustomerName { get; set; }
public bool WasSavingSignatureSuccessful { get; set; }
public bool HasSignatureAlready { get; set; }
}
}