mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
34 lines
612 B
C#
34 lines
612 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class ServiceAndVitityErrors
|
|
{
|
|
public class Service_Errors
|
|
{
|
|
public string code { get; set; }
|
|
|
|
public string title { get; set; }
|
|
|
|
public string message { get; set; }
|
|
|
|
public string path { 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 bool hasError { get; set; }
|
|
|
|
public Validationerror[] validationErrors { get; set; }
|
|
}
|
|
}
|