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