mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-29 10:49:38 +08:00
10 lines
168 B
C#
10 lines
168 B
C#
namespace OpenAuth.App.DTO
|
|
{
|
|
public abstract class Response
|
|
{
|
|
public bool Success { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
}
|
|
}
|