using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Azylee.YeahWeb.ExtWebAPI.BingWebAPI.WallpaperUtils
{
public class WallpaperModel
{
///
///
///
public List images { get; set; }
///
///
///
public Tooltips tooltips { get; set; }
}
public class ImagesItem
{
///
///
///
public string startdate { get; set; }
///
///
///
public string fullstartdate { get; set; }
///
///
///
public string enddate { get; set; }
///
///
///
public string url { get; set; }
///
///
///
public string urlbase { get; set; }
///
/// 黄昏时佩吉海湾的灯塔,加拿大新斯科舍省 (© Darwin Wiggett/Offset)
///
public string copyright { get; set; }
///
///
///
public string copyrightlink { get; set; }
///
///
///
public string title { get; set; }
///
///
///
public string quiz { get; set; }
///
///
///
public string wp { get; set; }
///
///
///
public string hsh { get; set; }
///
///
///
public int drk { get; set; }
///
///
///
public int top { get; set; }
///
///
///
public int bot { get; set; }
///
///
///
public List hs { get; set; }
}
public class Tooltips
{
///
/// 正在加载...
///
public string loading { get; set; }
///
/// 上一个图像
///
public string previous { get; set; }
///
/// 下一个图像
///
public string next { get; set; }
///
/// 此图片不能下载用作壁纸。
///
public string walle { get; set; }
///
/// 下载今日美图。仅限用作桌面壁纸。
///
public string walls { get; set; }
}
}