add admin

This commit is contained in:
hogan
2019-01-14 18:01:01 +08:00
parent d9c0ba52fa
commit 92afa4fb6d
35 changed files with 1411 additions and 29 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace FreeSql.Site.UI.Areas.Admin.Models
{
public class DocumentContentModel
{
public int OrderBy { get; set; }
public int ContentID { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace FreeSql.Site.UI.Areas.Admin.Models
{
public class DocumentTypeModel
{
public int OrderBy { get; set; }
public int ContentID { get; set; }
}
}