10 lines
236 B
C#
10 lines
236 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rail
|
|
{
|
|
public class RailFriendsQueryFriendPlayedGamesResult : EventBase
|
|
{
|
|
public List<RailFriendPlayedGameInfo> friend_played_games_info_list = new List<RailFriendPlayedGameInfo>();
|
|
}
|
|
}
|