util/csharp/core/Models/ServiceError.cs (18 lines of code) (raw):
using System;
using System.Collections.Generic;
using System.Text;
using Tea;
namespace AlibabaCloud.OSSUtil.Models
{
public class ErrorModel : TeaModel
{
public string Code { get; set; }
public string Message { get; set; }
public string RequestId { get; set; }
public string HostId { get; set; }
}
public class ServiceError : TeaModel
{
public ErrorModel Error { get; set; }
}
}