20 lines
398 B
C#
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; }
|
|
}
|