using System;
using System.Collections.Generic;
namespace Shared.Common.ResponseEntity
{
///
/// 固件
///
[Serializable]
public class FirmwareManaRes
{
public string ResponseVersion;
public string StateCode;
public string ErrorInfo;
public List ResponseData = new List{};
}
[Serializable]
public class FirmwareManaObj
{
///
/// apk名称
///
/// The name.
public string Name { get; set; }
///
/// apk版本
///
/// The firmware version.
public string FirmwareVersion { get; set; }
///
/// 备注
///
/// The remarks.
public string Remarks { get; set; }
///
/// 固件分布式唯一,也是下载时的[下载固件的唯一标识]
///
/// The distributed mark.
public string DistributedMark { get; set; }
///
/// 主键
///
/// The identifier.
public string Id { get; set; }
///
/// 创建时间
///
/// The created on UTC.
public string CreatedOnUtc { get; set; }
}
}