Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TuyaProtocolVersion.cs - github.com/ClusterM/tuyanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5149650907a89dbeefcc0c8bcceefb168b0640b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace com.clusterrr.TuyaNet
{
    /// <summary>
    /// Tuya protocol version.
    /// </summary>
    public enum TuyaProtocolVersion
    {
        /// <summary>
        /// Version 3.1.
        /// </summary>
        V31,
        /// <summary>
        /// Version 3.3.
        /// </summary>
        V33
    }
}