// ---------------------------------------------------------------------------------------------------------------------- // The Photon Chat Api enables clients to connect to a chat server and communicate with other clients. // ChannelWellKnownProperties contains the list of well-known channel properties. // Photon Chat Api - Copyright (C) 2018 Exit Games GmbH // ---------------------------------------------------------------------------------------------------------------------- namespace Photon.Chat { public class ChannelWellKnownProperties { public const byte MaxSubscribers = 255; public const byte PublishSubscribers = 254; } }