mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
17 lines
315 B
C#
17 lines
315 B
C#
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);
|
|
}
|
|
} |