Lots of work!

This commit is contained in:
tidusjar 2016-02-26 14:19:02 +00:00
parent 8f0ca3d1c4
commit 448cd8d92e
52 changed files with 6277 additions and 250 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; }
}
}