1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

add page list to manager so we can inject pages into the layout view

This commit is contained in:
RaidMax
2018-08-03 17:10:20 -05:00
parent c44ff8e46a
commit 7956a8cfba
9 changed files with 80 additions and 5 deletions

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebfrontCore.ViewModels
{
public class Page
{
public string Name { get; set; }
public string Location { get; set; }
}
}