Enable nullability for ResolutionInfo.cs
This commit is contained in:
parent
a41fc1f1ce
commit
5fa2c0ff26
|
@ -1,12 +1,14 @@
|
||||||
|
#nullable enable
|
||||||
|
|
||||||
using BizHawk.Emulation.Common;
|
using BizHawk.Emulation.Common;
|
||||||
|
|
||||||
namespace BizHawk.Client.Common
|
namespace BizHawk.Client.Common
|
||||||
{
|
{
|
||||||
public sealed class ResolutionInfo
|
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; }
|
public FirmwareFile? KnownFirmwareFile { get; set; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue