Skip to content

Commit

Permalink
fix: set default value for original name
Browse files Browse the repository at this point in the history
… to suppress a compiler warning.
  • Loading branch information
revam committed Sep 24, 2024
1 parent 4319475 commit 2f50967
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ResponseGetCreator
/// The original name of the creator. Will always be the 'ja' language for
/// the creator, if set. Otherwise, it will be an empty string.
/// </summary>
public string OriginalName { get; set; }
public string OriginalName { get; set; } = string.Empty;

/// <summary>
/// The type of creator.
Expand Down

0 comments on commit 2f50967

Please sign in to comment.