16 lines
343 B
C#
16 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdGrupoSanchoToro.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class gruasparticulares
|
|
{
|
|
public int idArticulo { get; set; }
|
|
|
|
public string? Codigo { get; set; }
|
|
|
|
public virtual articulos idArticuloNavigation { get; set; } = null!;
|
|
}
|