using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GameServer { public class TaskReservationChargePointData { public double BeamAmount { get; set; } = 0; public string PointType { get; set; } = string.Empty; public string orderGuid { get; set; } = string.Empty; } }