using System.ComponentModel; using Newtonsoft.Json; namespace NewHorizons.External.Props { [JsonObject] public class QuantumSocketInfo : GeneralPropInfo { /// /// The probability any props that are part of this group will occupy this socket /// [DefaultValue(1f)] public float probability = 1f; } }