You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
803 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CK.SCP.Models.AppBoxEntity
{
public class UserToken : IKeyID
{
[Key]
public int ID { get; set; }
[Required, StringLength(50)]
public string UserName { get; set; }
[StringLength(500)]
public string Token { get; set; }
public System.DateTime CreateTime { get; set; }
[StringLength(50)]
public string CreateUser { get; set; }
public Nullable<System.DateTime> UpdateTime { get; set; }
[StringLength(50)]
public string UpdateUser { get; set; }
[StringLength(500)]
public string Remark { get; set; }
}
}