UI improvements

This commit is contained in:
2022-01-24 00:08:22 +01:00
parent 031d07613b
commit aacbaa3a02
33 changed files with 729 additions and 152 deletions

View File

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