mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
Lots of work!
This commit is contained in:
parent
8f0ca3d1c4
commit
448cd8d92e
52 changed files with 6277 additions and 250 deletions
14
RequestPlex/RequestPlex.Store/UserModel.cs
Normal file
14
RequestPlex/RequestPlex.Store/UserModel.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue