examples/DotNetLogin/Models/UserInfo.cs

16 lines
254 B
C#

using System;
namespace DotNetLogin.Models
{
public class UserInfo
{
public string Username { get; set; }
public string Password { get; set; }
public string Name { get; set; }
public bool Enabled { get; set; }
}
}