20 lines
452 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
2023-08-12 19:08:38 +01:00
using Newtonsoft.Json;
namespace LootDumpProcessor.Model
{
public class Foldable : ICloneable
{
[JsonProperty("Folded", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Folded")]
public bool? Folded { get; set; }
public object Clone()
{
return new Foldable
{
Folded = Folded
2023-08-12 19:08:38 +01:00
};
}
}
}