chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
20 lines
452 B
C#
20 lines
452 B
C#
using System.Text.Json.Serialization;
|
|
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
|
|
};
|
|
}
|
|
}
|
|
} |