mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Refactor] Use collection expressions.
This commit is contained in:
@@ -61,8 +61,8 @@ public sealed class SubdirectoryViewModel
|
||||
|
||||
public SubdirectoryViewModel([NotNull] SubdirectoryModel model, Window view)
|
||||
{
|
||||
Entries = new ObservableCollection<FileModel>();
|
||||
SelectedEntries = new List<FileModel>();
|
||||
Entries = [];
|
||||
SelectedEntries = [];
|
||||
ExtractFilesCommand = ReactiveCommand.Create(ExecuteExtractFilesCommand);
|
||||
_model = model;
|
||||
_view = view;
|
||||
|
||||
Reference in New Issue
Block a user