namespace AIPractice.Shared.Labels
{
public abstract class LabelObject
{
///
/// Gets the id of the label.
///
public string Id { get; set; }
///
/// Gets the title of the label.
///
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;
}
}
}