コード例 #1
0
ファイル: TerminalTheme.cs プロジェクト: xcbat/FluentTerminal
 public TerminalTheme(TerminalTheme other)
 {
     Id           = other.Id;
     Name         = other.Name;
     Author       = other.Author;
     PreInstalled = other.PreInstalled;
     Colors       = new TerminalColors(other.Colors);
 }
コード例 #2
0
 public ExportedTerminalTheme(TerminalTheme other, string encodedImage)
     : base(other)
 {
     EncodedImage = encodedImage;
 }