17 lines
361 B
C#
17 lines
361 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Entidades
|
|
{
|
|
public class Proveedor
|
|
{
|
|
public int Cuit { get; set; }
|
|
public string Nombre { get; set; }
|
|
public string RazonSocial { get; set; }
|
|
public bool Habilitado { get; set; }
|
|
}
|
|
}
|