2018-06-16 22:11:25 -04:00
|
|
|
|
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
|
|
|
|
|
{
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|