namespace ApiPolo.Models { /// Error public class Error { /// Error title public string? err_title { get; set; } /// Error deatail public string? err_detail { get; set; } /// Error code public string? err_status_code { get; set; } } }