Files
caliverse_server/GameServer/Contents/TaskReservation/TaskReservationSchema.cs
2025-05-01 07:20:41 +09:00

20 lines
385 B
C#

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;
}
}