22 lines
448 B
C#
22 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class entidades_tokens
|
|
{
|
|
public uint id { get; set; }
|
|
|
|
public int? idEntidad { get; set; }
|
|
|
|
public DateTime creacion { get; set; }
|
|
|
|
public bool valido { get; set; }
|
|
|
|
public string token { get; set; } = null!;
|
|
|
|
public virtual entidades? idEntidadNavigation { get; set; }
|
|
}
|