12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using Mpeg4ConverterTool.Document;
- using Vinno.vCloud.Protocol.Infrastructures;
- namespace Mpeg4ConverterTool
- {
- internal class Terminal : TrackableEntity
- {
- private readonly ICollection<UserInfo> _users;
- public string Name { get; set; }
- public string Password { get; set; }
- public string Description { get; set; }
- public string SerialNumber { get; set; }
- public string Model { get; set; }
- public bool SupportLive { get; set; }
- public virtual AdminInfo CreateAdmin { get; set; }
- public virtual OrganizationInfo Organization { get; set; }
- public virtual ICollection<UserInfo> Users { get { return _users; } }
- public virtual ICollection<AdminInfo> Owners { get; private set; }
- public string FileToken { get; set; }
- public string CreatorUserId { get; set; }
- public bool IsRecommendedPoster { get; set; }
- public string UniquedId { get; set; }
- public bool CanEditInfo { get; set; }
- public string SoftwareVersion { get; set; }
- public bool IsSonopost { get; set; }
- /// <summary>
- /// AiDiagnosis Enabled
- /// </summary>
- public bool IsAIDiagnosis { get; set; }
- /// <summary>
- /// IsCarotidDiagnosis Enabled
- /// </summary>
- public bool IsCarotidDiagnosis { get; set; }
- /// <summary>
- /// 注册状态
- /// </summary>
- public TerminalRegistStatus RegistStatus { get; set; }
- private Terminal()
- {
- _users = new Collection<UserInfo>();
- Owners = new Collection<AdminInfo>();
- }
- public Terminal(string id, DateTime createTime) : base(id, createTime)
- {
- _users = new Collection<UserInfo>();
- Owners = new Collection<AdminInfo>();
- }
- }
- }
|