Enable nullability for ResolutionInfo.cs

This commit is contained in:
YoshiRulz 2021-02-12 17:05:47 +10:00
parent a41fc1f1ce
commit 5fa2c0ff26
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 4 additions and 2 deletions

View File

@ -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; }