2022-01-26 11:32:16 -05:00
|
|
|
|
namespace SharedLibraryCore.Dtos
|
2018-06-16 22:11:25 -04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// This class holds the basic info for api entities
|
2018-06-16 22:11:25 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class EntityInfo
|
|
|
|
|
{
|
2018-11-27 19:31:48 -05:00
|
|
|
|
public long Id { get; set; }
|
2018-06-16 22:11:25 -04:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
2022-01-26 11:32:16 -05:00
|
|
|
|
}
|