corrected backing field

This commit is contained in:
Tracy Pearson
2024-04-02 19:58:01 -04:00
parent 177237699e
commit 411b5722e2

View File

@@ -22,10 +22,8 @@ namespace MVPLearning.RecordKeeping.SermonFiler
private string _minister = string.Empty;
public string Where { get => _where; set => SetProperty(ref _where, value); }
private string _where = string.Empty;
public string Ref_No { get => _ref_No; set => SetProperty(ref _where, value); }
#pragma warning disable IDE0044 // Add readonly modifier
public string Ref_No { get => _ref_No; set => SetProperty(ref _ref_No, value); }
private string _ref_No = string.Empty;
#pragma warning restore IDE0044 // Add readonly modifier
public string Notes { get => _notes; set => SetProperty(ref _notes, value); }
private string _notes = string.Empty;
public string Filename { get => _filename; set => SetProperty(ref _filename, value); }