Files
SanchoToro/bdGrupoSanchoToro/db/ficherosconfiguracion.cs
2026-01-23 12:45:41 +01:00

20 lines
420 B
C#

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; }
}