using JiShe.ServicePro.Enums;
using Swashbuckle.AspNetCore.Annotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.IoT.IoTPlatformAggregation.Dto
{
///
/// 平台产品信息
///
public class IoTPlatformProductInfoOutput
{
///
/// 物联网平台类型
///
public IoTPlatformTypeEnum IoTPlatformType { get; set; }
///
/// 物联网平台对应的产品Id
///
public string IoTPlatformProductId { get; set; }
///
/// 产品名称
///
public string ProductName { get; set; }
}
}