feat: 首次完成测试

This commit is contained in:
姚彪
2023-11-25 21:59:48 +08:00
commit face3bfa69
432 changed files with 61025 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using DownKyi.Core.FileName;
using Prism.Mvvm;
namespace DownKyi.ViewModels.Settings;
public class DisplayFileNamePart : BindableBase
{
public FileNamePart Id { get; set; }
private string title;
public string Title
{
get => title;
set => SetProperty(ref title, value);
}
}