PKHeX/PKHeX.Core/Saves/SaveFileState.cs

16 lines
497 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Tracks information about modifications made to a <see cref="SaveFile"/>
/// </summary>
2022-04-11 18:56:56 +00:00
/// <param name="Exportable">
/// Toggle determining if the save file can be exported.
/// </param>
public sealed record SaveFileState(bool Exportable)
{
/// <summary>
/// Mutable value tracking if the save file has been changed. This is set manually by modifications, and not for all modifications.
/// </summary>
public bool Edited { get; set; }
}