You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi/ViewModels/Settings/DisplayFileNamePart.cs

18 lines
357 B

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);
}
}
}