ChannelWellKnownProperties.cs 758 B

1234567891011121314
  1. // ----------------------------------------------------------------------------------------------------------------------
  2. // <summary>The Photon Chat Api enables clients to connect to a chat server and communicate with other clients.</summary>
  3. // <remarks>ChannelWellKnownProperties contains the list of well-known channel properties.</remarks>
  4. // <copyright company="Exit Games GmbH">Photon Chat Api - Copyright (C) 2018 Exit Games GmbH</copyright>
  5. // ----------------------------------------------------------------------------------------------------------------------
  6. namespace Photon.Chat
  7. {
  8. public class ChannelWellKnownProperties
  9. {
  10. public const byte MaxSubscribers = 255;
  11. public const byte PublishSubscribers = 254;
  12. }
  13. }