1234567891011121314151617181920212223242526272829 |
- namespace AIPractice.Shared.Labels
- {
- public abstract class LabelObject
- {
- /// <summary>
- /// Gets the id of the label.
- /// </summary>
- public string Id { get; set; }
- /// <summary>
- /// Gets the title of the label.
- /// </summary>
- public string Title { get; set; }
- protected LabelObject(string id, string title)
- {
- Id = id;
- Title = title;
- }
- public abstract string ToXml();
- public override string ToString()
- {
- return Title;
- }
- }
- }
|