| | 1 | | using System; |
| | 2 | |
|
| | 3 | | namespace DCL.Social.Chat |
| | 4 | | { |
| | 5 | | [Serializable] |
| | 6 | | public class PublicChatEntryModel : BaseComponentModel |
| | 7 | | { |
| | 8 | | public string channelId; |
| | 9 | | public string name; |
| | 10 | | public bool isJoined; |
| | 11 | | public int memberCount; |
| | 12 | | public bool showOnlyOnlineMembers; |
| | 13 | | public bool muted; |
| | 14 | |
|
| 53 | 15 | | public PublicChatEntryModel(string channelId, string name, bool isJoined, int memberCount, bool showOnlyOnlineMe |
| | 16 | | { |
| 53 | 17 | | this.channelId = channelId; |
| 53 | 18 | | this.name = name; |
| 53 | 19 | | this.isJoined = isJoined; |
| 53 | 20 | | this.memberCount = memberCount; |
| 53 | 21 | | this.showOnlyOnlineMembers = showOnlyOnlineMembers; |
| 53 | 22 | | this.muted = muted; |
| 53 | 23 | | } |
| | 24 | | } |
| | 25 | | } |