moved everything up a directory

This commit is contained in:
tidusjar 2016-02-26 14:31:28 +00:00
parent 448cd8d92e
commit 9a78f790a6
76 changed files with 0 additions and 0 deletions

View 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; }
}
}