NG_/Assets/Scripts/Data/Info/SituationEventInfo.cs
2024-12-13 19:40:05 +08:00

14 lines
258 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
// 门禁通过记录info
public class SituationEventInfo<T>
{
public int code;
public string msg;
public List<T> rows;
public int total;
}