Skip to content

Commit

Permalink
Add string.Empty to the properties in History
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardobragaxz committed Mar 27, 2024
1 parent 9b1062d commit 1528a10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mastonet.Entities/History.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ public class History
/// UNIX timestamp on midnight of the given day.
/// </summary>
[JsonPropertyName("day")]
public string Day { get; set; }
public string Day { get; set; } = string.Empty;

/// <summary>
/// the counted usage of the tag within that day.
/// </summary>
[JsonPropertyName("uses")]
public string Uses { get; set; }
public string Uses { get; set; } = string.Empty;

/// <summary>
/// the total of accounts using the tag within that day.
/// </summary>
[JsonPropertyName("accounts")]
public string Accounts { get; set; }
public string Accounts { get; set; } = string.Empty;
}

0 comments on commit 1528a10

Please sign in to comment.