31 lines
545 B
C#
31 lines
545 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
using HeBianGu.Base.WpfBase;
|
|||
|
|
|
|||
|
|
namespace Hopetry.Models;
|
|||
|
|
|
|||
|
|
public class DownFolderSelect : NotifyPropertyChangedBase
|
|||
|
|
{
|
|||
|
|
private bool _isSelect;
|
|||
|
|
|
|||
|
|
public bool IsSelect
|
|||
|
|
{
|
|||
|
|
get => _isSelect;
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
_isSelect = value;
|
|||
|
|
RaisePropertyChanged();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private string _downFolder;
|
|||
|
|
|
|||
|
|
public string DownFolder
|
|||
|
|
{
|
|||
|
|
get => _downFolder;
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
_downFolder = value;
|
|||
|
|
RaisePropertyChanged();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|