mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
feat: 首次完成测试
This commit is contained in:
17
DownKyi/ViewModels/Settings/DisplayFileNamePart.cs
Normal file
17
DownKyi/ViewModels/Settings/DisplayFileNamePart.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user