Files
Final_Das/Entidades/Proveedor.cs

17 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entidades
{
public class Proveedor
{
public Int63 Cuit { get; set; }
public string Nombre { get; set; }
public string RazonSocial { get; set; }
public bool Habilitado { get; set; }
}
}