Skip to content

Commit

Permalink
修复了一些警告
Browse files Browse the repository at this point in the history
  • Loading branch information
ErrOwk committed Sep 17, 2024
1 parent 7edbd9f commit 043b921
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LogBook-WPF/Models/QSO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public class QSO
public int Id { get; set; }

public DateTime UTCTime { get; set; }
public string selfCallsign { get; set; }
public string toCallsign { get; set; }
public string mode { get; set; }
public string selfCallsign { get; set; } = string.Empty;
public string toCallsign { get; set; } = string.Empty;
public string mode { get; set; } = string.Empty;
public double freq { get; set; }
public double? freq_rx { get; set; }
public string? band { get; set; }
Expand Down

0 comments on commit 043b921

Please sign in to comment.