mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.Models.Meross
|
|
{
|
|
public class MerossDevice
|
|
{
|
|
public string uuid { get; set; }
|
|
public int onlineStatus { get; set; }
|
|
public string devName { get; set; }
|
|
public string devIconId { get; set; }
|
|
public long bindTime { get; set; }
|
|
public string deviceType { get; set; }
|
|
public string subType { get; set; }
|
|
public List<Channel> channels { get; set; }
|
|
public string region { get; set; }
|
|
public string firmwareVersion { get; set; }
|
|
public string hdwareVersion { get; set; }
|
|
public string userDevIcon { get; set; }
|
|
public int iconType { get; set; }
|
|
public string skillNumber { get; set; }
|
|
public string domain { get; set; }
|
|
public string reservedDomain { get; set; }
|
|
}
|
|
|
|
public class Channel
|
|
{
|
|
public string type { get; set; }
|
|
public string devName { get; set; }
|
|
public string devIconId { get; set; }
|
|
}
|
|
}
|