using System;
namespace Link.Api.Models
{
///
/// 申请短链返回
///
public class TopResponse
{
///
/// 短链码
///
public string Key { get; set; }
///
/// 短链接
///
public string ShortUrl { get; set; }
///
/// 失效时间
///
public DateTime? ExpireTime { get; set; }
}
}