Files
2026-07-05 09:51:40 -04:00

25 lines
605 B
C#

using System;
using Newtonsoft.Json;
using SabreTools.RedumpLib.Legacy.Converters;
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,
};
}
}
}