namespace PKHeX.Core; /// /// Tracks information about modifications made to a /// /// /// Toggle determining if the save file can be exported. /// public sealed record SaveFileState(bool Exportable) { /// /// Mutable value tracking if the save file has been changed. This is set manually by modifications, and not for all modifications. /// public bool Edited { get; set; } }