mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
41 lines
749 B
C#
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; }
|
|
}
|
|
}
|