mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
15 lines
497 B
C#
15 lines
497 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Tracks information about modifications made to a <see cref="SaveFile"/>
|
|
/// </summary>
|
|
/// <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; }
|
|
}
|