Skip to content

Commit

Permalink
Made nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
koliva8245 committed Nov 16, 2020
1 parent 7997589 commit 3d48ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Heroes.Models/MatchAward.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public class MatchAward : ExtractableBase<MatchAward>, IExtractable
/// <summary>
/// Gets or sets the MVP screen image original file name.
/// </summary>
internal string MVPScreenImageFileNameOriginal { get; set; } = string.Empty;
internal string? MVPScreenImageFileNameOriginal { get; set; }

/// <summary>
/// Gets or sets the score screen image original file name.
/// </summary>
internal string ScoreScreenImageFileNameOriginal { get; set; } = string.Empty;
internal string? ScoreScreenImageFileNameOriginal { get; set; }
}
}

0 comments on commit 3d48ed4

Please sign in to comment.