10 lines
187 B
C#
10 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rail
|
|
{
|
|
public class RailUsersInfoData : EventBase
|
|
{
|
|
public List<PlayerPersonalInfo> user_info_list = new List<PlayerPersonalInfo>();
|
|
}
|
|
}
|