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.
14 lines
354 B
14 lines
354 B
using MultiTerm.Core.Types;
|
|
|
|
namespace MultiTerm.Core.Model;
|
|
|
|
public class FormattedCharacter : Tuple<FormatType, string>, IFormattedCharacter
|
|
{
|
|
public FormattedCharacter(FormatType item1, string item2) : base(item1, item2)
|
|
{
|
|
}
|
|
|
|
public FormattedCharacter(Tuple<FormatType, string> tuple) : base(tuple.Item1, tuple.Item2)
|
|
{
|
|
}
|
|
}
|
|
|