14 lines
260 B
C#
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; }
|
|||
|
}
|
|||
|
}
|