You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
443 B
18 lines
443 B
using MultiTerm.Core.Types;
|
|
|
|
namespace MultiTerm.Core.Model;
|
|
|
|
public class FormattedCharacter : Tuple<FormatType, string>, IFormattedCharacter
|
|
{
|
|
public FormatType Format => this.Item1;
|
|
|
|
public string Character => this.Item2;
|
|
|
|
public FormattedCharacter(FormatType item1, string item2) : base(item1, item2)
|
|
{
|
|
}
|
|
|
|
public FormattedCharacter(Tuple<FormatType, string> tuple) : base(tuple.Item1, tuple.Item2)
|
|
{
|
|
}
|
|
}
|
|
|