using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace Link.Api.Models
{
///
///
///
public class ListPageGetAccessHistoryRequest : PageBiz
{
///
/// 短码
///
[Display(Name = "短码")]
[Required(ErrorMessage = "{0}" + BizConstants.NOT_NULL)]
public string Key { get; set; }
}
}