10 lines
251 B
C#
10 lines
251 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rail
|
|
{
|
|
public class RailFriendsQueryPlayedWithFriendsGamesResult : EventBase
|
|
{
|
|
public List<RailPlayedWithFriendsGameItem> played_with_friends_game_list = new List<RailPlayedWithFriendsGameItem>();
|
|
}
|
|
}
|