CloudBuilder/CloudBuilder.Core/Service/ExceptionData.cs
owenchen 1c0c83af5f ow
2026-05-12 10:09:31 +08:00

15 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CloudBuilder.Core.Service
{
public class ExceptionData
{
public string StatusCode { get; set; }
public string ErrMsg { get; set; }
}
}