using System; using System.Collections.Generic; using System.Text; namespace SharedLibraryCore.Dtos { /// /// This class holds the basic info for api entities /// public class EntityInfo { public int Id { get; set; } public string Name { get; set; } } }