14 lines
269 B
C#
14 lines
269 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Estadoventa
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Descripcion { get; set; }
|
|
|
|
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
|
|
}
|