ImageLabel.cs 240 B

1234567891011
  1. namespace AIPractice.Shared.Labels
  2. {
  3. public abstract class ImageLabel:LabelObject
  4. {
  5. public RootLabel Root { get; set; }
  6. protected ImageLabel(string id, string title) : base(id, title)
  7. {
  8. }
  9. }
  10. }