Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
turtle-insect committed Nov 19, 2024
1 parent eee986a commit d5a8aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LINKDATA/ViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ internal class ViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;

public ObservableCollection<IDX> IDXs { get; private set; } = new ObservableCollection<IDX>();
public IDXzrc IDXzrc { get; private set; } = new IDXzrc();
public ObservableCollection<IDX> IDXs { get; init; } = new ObservableCollection<IDX>();
public IDXzrc IDXzrc { get; init; } = new IDXzrc();
public ICommand CommandOpenWorkPath { get; init; }
public ICommand CommandOpenIDXFile { get; init; }
public ICommand CommandOpenIDXzrcFile { get; init; }
Expand Down

0 comments on commit d5a8aaa

Please sign in to comment.