mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
14 lines
297 B
C#
14 lines
297 B
C#
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; }
|
|
}
|
|
}
|