diff --git a/src/BizHawk.Client.Common/fwmanager/ResolutionInfo.cs b/src/BizHawk.Client.Common/fwmanager/ResolutionInfo.cs index 7dd18abbc6..c88d3972af 100644 --- a/src/BizHawk.Client.Common/fwmanager/ResolutionInfo.cs +++ b/src/BizHawk.Client.Common/fwmanager/ResolutionInfo.cs @@ -1,12 +1,14 @@ +#nullable enable + using BizHawk.Emulation.Common; namespace BizHawk.Client.Common { public sealed class ResolutionInfo { - public string FilePath { get; set; } + public string? FilePath { get; set; } - public string Hash { get; set; } + public string? Hash { get; set; } public FirmwareFile? KnownFirmwareFile { get; set; }