mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
19 lines
483 B
C#
19 lines
483 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.Models.Aqara
|
|
{
|
|
public class Cube
|
|
{
|
|
public double Angle { get; set; }
|
|
public int LinkQuality { get; set; }
|
|
public int Side { get; set; }
|
|
public int Battery { get; set; }
|
|
public int Voltage { get; set; }
|
|
public string Action { get; set; }
|
|
}
|
|
} |