IW4M-Admin/SharedLibraryCore/Dtos/EntityInfo.cs
RaidMax e7c7145da1 Show time passed since ban instead of "forever"
reworked event api to include all events (sans unknown)
2018-06-16 21:11:25 -05:00

16 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Dtos
{
/// <summary>
/// This class holds the basic info for api entities
/// </summary>
public class EntityInfo
{
public int Id { get; set; }
public string Name { get; set; }
}
}