You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/RequestPlex.Store/UserModel.cs

15 lines
297 B

using System;
using Dapper.Contrib.Extensions;
namespace RequestPlex.Store
{
[Table("User")]
public class UserModel : Entity
{
public string User { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}