10 lines
220 B
C#
10 lines
220 B
C#
namespace ChatApi.Controllers
|
|
{
|
|
public class LoginRequest
|
|
{
|
|
public string ClientId { get; set; }
|
|
public string ClientName { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
}
|
|
}
|