HKC_Blazor/MasaBlazorApp3/Pojo/Config/SettingConfig.cs

22 lines
578 B
C#
Raw Normal View History

2025-04-18 11:01:56 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.Pojo.Config
{
public class SettingConfig
{
public string machineId { get; set; }
public string storage { get; set; }
public int loginMode { get; set; }
public bool opFirst { get; set; }
//自动退出登录时间,单位秒0不自动退出
public int autoOutLog { get; set; }
2025-06-24 08:55:34 +08:00
//手术室药盒的设备id
public string boxMachineId { get; set; }
2025-04-18 11:01:56 +08:00
}
}