using JiShe.ServicePro.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.IoT.IoTPlatformAggregation.Dto
{
///
/// 平台账号信息
///
public class IoTPlatformAccountInfoOutput
{
///
/// 物联网平台类型
///
public IoTPlatformTypeEnum IoTPlatformType { get; set; }
///
/// 平台账号
///
public string IoTPlatformAccount { get; set; }
///
/// 平台账号手机号
///
public string IoTPlatformPhoneNumber { get; set; }
}
}