namespace AIPractice.Shared.Labels { public abstract class ImageLabel:LabelObject { public RootLabel Root { get; set; } protected ImageLabel(string id, string title) : base(id, title) { } } }