You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
823 B
38 lines
823 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Tiobon.Core.OPS.Tool.OPS.Tool.Model
|
|
{
|
|
public class Image
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Tags { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
private string size;
|
|
public string Size
|
|
{
|
|
get
|
|
{
|
|
return size;
|
|
}
|
|
set
|
|
{
|
|
size = (Math.Round((double.Parse(value) / 1000 / 1000), 1) + 0.1).ToString(); ;
|
|
}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Createtime { get; set; }
|
|
}
|
|
}
|
|
|