Files
kami_itunes_june/AppleBatch_June.Model/ServiceErrorsModel.cs
2024-07-22 00:43:14 +08:00

41 lines
749 B
C#

namespace AppleBatch_June.Model
{
public class ServiceErrorsModel
{
public class Service_Errors
{
public string code { get; set; }
public string message { get; set; }
}
public class ServiceErrors
{
public string code { get; set; }
public string message { get; set; }
public bool suppressDismissal { get; set; }
}
public class Validationerror
{
public string code { get; set; }
public string title { get; set; }
public string message { get; set; }
public string path { get; set; }
}
public Service_Errors[] service_errors { get; set; }
public ServiceErrors[] serviceErrors { get; set; }
public bool hasError { get; set; }
public Validationerror[] validationErrors { get; set; }
}
}