IW4M-Admin/SharedLibraryCore/Dtos/EntityInfo.cs

11 lines
255 B
C#
Raw Normal View History

2022-01-26 11:32:16 -05:00
namespace SharedLibraryCore.Dtos
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// This class holds the basic info for api entities
/// </summary>
public class EntityInfo
{
public long Id { get; set; }
public string Name { get; set; }
}
2022-01-26 11:32:16 -05:00
}