using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AttachmentDemo.Model
{
public class TnToken
{
///
/// token
///
public string TokenStr { get; set; }
///
/// 过期时间
///
public DateTime Expires { get; set; }
}
}