Avalonia project

This commit is contained in:
2022-01-26 09:54:03 +01:00
parent 5e688ae7b1
commit 0025339261
2396 changed files with 4986 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Avalonia.Media;
using System;
using System.Collections.Generic;
using System.Text;
namespace FileTime.Avalonia.Models
{
public class ItemNamePart
{
public string Text { get; set; }
public TextDecorationCollection? TextDecorations { get; set; }
public ItemNamePart(string text)
{
Text = text;
}
}
}