PKHeX/PKHeX.Core/Legality/Verifiers/Ribbons/RibbonResult.cs
Kurt fc754b346b
File scoped namespaces (#3529)
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces)

Updates all the files, one less level of indentation.

Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
2022-06-18 11:04:24 -07:00

28 lines
756 B
C#

namespace PKHeX.Core;
/// <summary>
/// Legality Check Parse object containing information about a single ribbon.
/// </summary>
internal sealed class RibbonResult
{
/// <summary>Ribbon Display Name</summary>
public string Name { get; private set; }
/// <summary>Ribbon should not be present.</summary>
/// <remarks>If this is false, the Ribbon is missing.</remarks>
public bool Invalid { get; }
public RibbonResult(string prop, bool invalid = true)
{
Name = RibbonStrings.GetName(prop);
Invalid = invalid;
}
/// <summary>
/// Merges the result name with another provided result.
/// </summary>
public void Combine(RibbonResult other)
{
Name += $" / {other.Name}";
}
}