study-lib-backend/API/Models/Login.cs
2020-12-16 21:41:14 +01:00

14 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace StudyLib.API.Models
{
public class Login
{
public string UserName { get; set; }
public string Password { get; set; }
}
}