16 lines
317 B
C#
16 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAntifraudeMYSQL.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class PAGINASWEBINTRANET
|
|
{
|
|
public int IDPAGINAWEBINTRANET { get; set; }
|
|
|
|
public string? NOMBRE { get; set; }
|
|
|
|
public int? NIVEL { get; set; }
|
|
}
|