20 lines
445 B
C#
20 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class peticionescontrasena
|
|
{
|
|
public int idpeticionescontrasena { get; set; }
|
|
|
|
public string DNI { get; set; } = null!;
|
|
|
|
public string ContrasenaProvisional { get; set; } = null!;
|
|
|
|
public DateTime? FechaExpiracion { get; set; }
|
|
|
|
public DateTime? FechaCambio { get; set; }
|
|
}
|