IW4M-Admin/SharedLibraryCore/Dtos/EntityInfo.cs
RaidMax 9d6cbee69c update stats
change server id
fIx change log server complaining when empty read
2018-11-27 18:31:48 -06:00

16 lines
320 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 long Id { get; set; }
public string Name { get; set; }
}
}