HKC_Blazor/MasaBlazorApp3/Pojo/Config/fridgeConfig.cs

17 lines
370 B
C#
Raw Normal View History

2025-06-24 08:55:34 +08:00
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; }
}
}