mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-09 02:44:44 +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; }
|
|
}
|
|
}
|