| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.HouseSetting
- {
- public class TLSettingCommon : ObservableObject
- {
- public long id { get; set; }
- private int _autoFocusTime;
- public int autoFocusTime
- {
- get => _autoFocusTime;
- set => SetProperty(ref _autoFocusTime, value);
- }
- public string tlSn { get; set; }
- public string tmpDir { get; set; }
- private int _videoFps;
- public int videoFps
- {
- get => _videoFps;
- set => SetProperty(ref _videoFps, value);
- }
- public int cropNum { get; set; }
- public string watermarking { get; set; }
- public string heapDate { get; set; }
- public string keepDate { get; set; }
- private string _reportHospitalLogoUrl;
- public string reportHospitalLogoUrl
- {
- get => _reportHospitalLogoUrl;
- set => SetProperty(ref _reportHospitalLogoUrl, value);
- }
- private string _reportHospitalName;
- public string reportHospitalName
- {
- get => _reportHospitalName;
- set => SetProperty(ref _reportHospitalName, value);
- }
- }
- }
|