1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-09 23:00:57 -05:00

removed event controller, and added status to api controller

get time passed returns weeks after 90 days
and months after 365
This commit is contained in:
RaidMax
2018-08-02 20:52:35 -05:00
parent 2cb308989a
commit c44ff8e46a
13 changed files with 139 additions and 80 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Interfaces
{
public interface IPageList
{
IDictionary<string, string> Pages { get; set; }
}
}