fix misplaced attribute (#837)

This commit is contained in:
Jesse Plamondon-Willard 2022-04-09 16:58:52 -04:00
parent 85c769d2a2
commit 376dadd341
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
1 changed files with 3 additions and 3 deletions

View File

@ -16,15 +16,15 @@ namespace StardewModdingAPI.Toolkit.Framework.UpdateData
public ModSiteKey Site { get; }
/// <summary>The mod ID within the repository.</summary>
#if NET5_0_OR_GREATER
[MemberNotNullWhen(true, nameof(LooksValid))]
#endif
public string? ID { get; }
/// <summary>If specified, a substring in download names/descriptions to match.</summary>
public string? Subkey { get; }
/// <summary>Whether the update key seems to be valid.</summary>
#if NET5_0_OR_GREATER
[MemberNotNullWhen(true, nameof(UpdateKey.ID))]
#endif
public bool LooksValid { get; }