HKC_Blazor/MasaBlazorApp3/Pojo/Config/SettingConfig.cs

22 lines
578 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
//手术室药盒的设备id
public string boxMachineId { get; set; }
}
}