// ---------------------------------------------------------------------------------------------------------------------- // The Photon Chat Api enables clients to connect to a chat server and communicate with other clients. // ChannelCreationOptions is a parameter used when subscribing to a public channel for the first time. // Photon Chat Api - Copyright (C) 2018 Exit Games GmbH // ---------------------------------------------------------------------------------------------------------------------- namespace Photon.Chat { public class ChannelCreationOptions { /// Default values of channel creation options. public static ChannelCreationOptions Default = new ChannelCreationOptions(); /// Whether or not the channel to be created will allow client to keep a list of users. public bool PublishSubscribers { get; set; } /// Limit of the number of users subscribed to the channel to be created. public int MaxSubscribers { get; set; } } }