Files
BeWoPlaner/BeWoPlanerMobil/Models/ExternalSignatureModel.cs
Lyndon Jetten 369824ce8b FaC: SelectContact im ChatController gefixt.
MoK: Einmallink eingebaut. Ist noch nicht ganz fertig.
2024-04-30 12:18:38 +02:00

27 lines
766 B
C#

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; }
}
}