调整了一下项目框架与前端JS代码

This commit is contained in:
yubaolee
2015-09-20 21:59:36 +08:00
parent 2dea364b2b
commit 43f8130e7e
224 changed files with 17851 additions and 3449 deletions

15
OpenAuth.Domain/Button.cs Normal file
View File

@@ -0,0 +1,15 @@
namespace OpenAuth.Domain
{
public partial class Button
{
public string ButtonId { get; set; }
public string FullName { get; set; }
public string Img { get; set; }
public string Event { get; set; }
public string Control_ID { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public bool Enabled { get; set; }
public int SortCode { get; set; }
}
}