17 lines
370 B
C#
17 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MasaBlazorApp3.Pojo.Config
|
|
{
|
|
//冰箱配置文件
|
|
public class fridgeConfig
|
|
{
|
|
public string temperatureRange { get; set; }
|
|
public int fridgeState { get; set; }
|
|
public int alertState { get; set; }
|
|
}
|
|
}
|