Agregar archivos de proyecto.
This commit is contained in:
19
bdGrupoSanchoToro/db/ficherosconfiguracion.cs
Normal file
19
bdGrupoSanchoToro/db/ficherosconfiguracion.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class ficherosconfiguracion
|
||||
{
|
||||
public int idFicheroConfiguracion { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public string? Codigo { get; set; }
|
||||
|
||||
public byte[]? Configuracion { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user