Files
SabreTools.RedumpLib/SabreTools.RedumpLib.Legacy/Data/Sections/EDCSection.cs
2026-07-05 00:57:52 -04:00

26 lines
631 B
C#

using System;
using Newtonsoft.Json;
using SabreTools.RedumpLib.Converters;
using SabreTools.RedumpLib.Data;
namespace SabreTools.RedumpLib.Legacy.Data.Sections
{
/// <summary>
/// EDC section of New Disc form (PSX only)
/// </summary>
public class EDCSection : ICloneable
{
[JsonProperty(PropertyName = "d_edc", NullValueHandling = NullValueHandling.Ignore)]
[JsonConverter(typeof(YesNoConverter))]
public YesNo? EDC { get; set; }
public object Clone()
{
return new EDCSection
{
EDC = this.EDC,
};
}
}
}