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

20 lines
398 B
C#

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