mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-25 02:13:27 -04:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
15 lines
325 B
C#
15 lines
325 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;
|
|
}
|
|
}
|