mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-06 17:13:11 +00:00
19 lines
286 B
C#
19 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OmniLinkBridge.WebAPI
|
|
{
|
|
public enum DeviceType
|
|
{
|
|
unknown,
|
|
contact,
|
|
motion,
|
|
water,
|
|
smoke,
|
|
co
|
|
}
|
|
}
|