14 lines
258 B
C#
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;
|
|
}
|