NG_/Assets/Scripts/Data/Info/SituationEventInfo.cs

14 lines
258 B
C#
Raw Normal View History

2024-12-13 19:40:05 +08:00
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;
}