using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
var query = new UserQuery
UserIds = {1, 2, 3}
};
Console.WriteLine("User Ids: " + string.Join(", ", query.UserIds));
}
public class UserQuery
public List<int> UserIds { get; } = new List<int>();