| | 1 | | namespace DCL |
| | 2 | | { |
| | 3 | | public class DataStore_Channels |
| | 4 | | { |
| 7 | 5 | | public readonly BaseVariable<string> currentJoinChannelModal = new BaseVariable<string>(null); |
| 7 | 6 | | public readonly BaseVariable<ChannelJoinedSource> channelJoinedSource = new BaseVariable<ChannelJoinedSource>(Ch |
| 7 | 7 | | public readonly BaseVariable<ChannelLeaveSource> channelLeaveSource = new BaseVariable<ChannelLeaveSource>(Chann |
| 7 | 8 | | public readonly BaseVariable<bool> isCreationModalVisible = new BaseVariable<bool>(); |
| 7 | 9 | | public readonly BaseVariable<string> currentChannelLimitReached = new BaseVariable<string>(); |
| 7 | 10 | | public readonly BaseVariable<string> joinChannelError = new BaseVariable<string>(); |
| 7 | 11 | | public readonly BaseVariable<string> leaveChannelError = new BaseVariable<string>(); |
| 7 | 12 | | public readonly BaseVariable<string> channelToBeOpenedFromLink = new BaseVariable<string>(); |
| 7 | 13 | | public readonly BaseVariable<bool> isPromoteToastVisible = new BaseVariable<bool>(); |
| | 14 | | } |
| | 15 | | } |