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

12 lines
201 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class PageInfo<T>
{
public int pages;
public long total;
public List<T> list;
}