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

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