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