mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-11 00:59:53 -04:00
16 lines
338 B
C#
16 lines
338 B
C#
namespace LibationAvalonia.Dialogs
|
|
{
|
|
public partial class LiberatedStatusBatchAutoDialog : DialogWindow
|
|
{
|
|
public bool SetDownloaded { get; set; }
|
|
public bool SetNotDownloaded { get; set; }
|
|
|
|
public LiberatedStatusBatchAutoDialog()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = this;
|
|
ControlToFocusOnShow = SaveButton;
|
|
}
|
|
}
|
|
}
|