mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
10 lines
201 B
C#
10 lines
201 B
C#
namespace BililiveRecorder.Web.Models.Rest
|
|
{
|
|
public class RestApiError
|
|
{
|
|
public RestApiErrorCode Code { get; set; }
|
|
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
}
|