namespace SharedLibraryCore.Dtos { /// /// This class holds the basic info for api entities /// public class EntityInfo { public long Id { get; set; } public string Name { get; set; } } }