using System.Collections.Generic;
using FairyGUI;
namespace GFGGame
{
public class PoemGalleryData
{
///
/// 作品id
///
public long WorkId;
///
/// 作者id
///
public long AuthorId;
///
/// 作者名字
///
public string AuthorName;
///
/// 点赞投票次数
///
public long VoteCount;
///
/// 被收藏次数
///
public long CollectCount;
///
/// 是否点赞
///
public bool VoteOrNot;
///
/// 是否收藏
///
public bool CollectOrNot;
///
/// 创建时间,单位:毫秒
///
public long CreateTime;
///
/// 主题期数
///
public long ThemeOrder;
///
/// 主题配置id
///
public long ThemeId;
///
/// 临时下载路径
///
public string PictureTempUrl;
///
/// 作品资源
///
public NTexture Ntexture;
}
}