using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Luticate2.Auth.DataAccess.Models { public partial class lu_tokens { public string id { get; set; } public DateTime? notBefore { get; set; } public DateTime? notAfter { get; set; } public Guid user_id { get; set; } public string data { get; set; } public virtual lu_users fk_lu_users { get; set; } } }