20 lines
412 B
C#
20 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.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; }
|
|
}
|