123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System.Collections.Generic;
- namespace Vinno.vCloud.Common.FIS.LiveVideos
- {
- public class DeviceRecommandResolution
- {
- /// <summary>
- /// 超声机品牌
- /// </summary>
- public string Brand { get; }
- /// <summary>
- /// 超声机型号ID
- /// </summary>
- public string ModelId { get; }
- /// <summary>
- /// 超声机型号
- /// </summary>
- public string Model { get; }
- /// <summary>
- /// 推荐分辨路宽度
- /// </summary>
- public int Width { get; }
- /// <summary>
- /// 推荐分辨路高度
- /// </summary>
- public int Height { get; }
- public DeviceRecommandResolution(string brand, string modelId, string model, int width, int height)
- {
- Brand = brand;
- ModelId = modelId;
- Model = model;
- Width = width;
- Height = height;
- }
- }
- public class DeviceBrandInfo
- {
- /// <summary>
- /// 超声机品牌
- /// </summary>
- public string Brand { get; }
- /// <summary>
- /// 超声机型号列表
- /// </summary>
- public IList<DeviceRecommandResolution> Models { get; }
- public DeviceBrandInfo(string brand)
- {
- Brand = brand;
- Models = new List<DeviceRecommandResolution>();
- }
- }
- }
|