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. /// TimeOnly Time { get; } /// /// Hosts a displayable string of the character (UTF-16 encoded). /// string DisplayString { get; } /// /// Hosts a string of the character (hexadecimal format). /// string DisplayStringHex { get; } /// /// Hosts a string of the character (binary format). /// string DisplayStringBin { get; } }