namespace MultiTerm.Core.ViewModel;
public interface IDataViewModel
{
///
/// Allows frontent to group items by line identifier.
/// Can be set, e.g. to reorder items.
///
int LineIdentifier { get; set; }
///
/// Time when this data was produced.
///
string TimeAsString { get; }
///
/// Hosts a displayable string of the character (.NET: UTF-16 encoded).
///
string DisplayStringChar { get; }
///
/// Hosts a string of the character (hexadecimal format).
///
string DisplayStringHex { get; }
///
/// Hosts a string of the character (binary format).
///
string DisplayStringBin { get; }
}