IW4M-Admin/SharedLibraryCore/Dtos/EntityInfo.cs

16 lines
319 B
C#
Raw Normal View History

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; }
}
}