20 lines
345 B
C#
20 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ReallifeGamemode.DataService.Types
|
|
{
|
|
public class LoginRequest
|
|
{
|
|
public string Username { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
}
|
|
|
|
public class LoginResponse
|
|
{
|
|
public string Token { get; set; }
|
|
}
|
|
}
|