Files
AlquilaFacil/Entidades/Recibo.cs
2024-10-19 18:00:26 -03:00

16 lines
301 B
C#

using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Recibo
{
public long id { get; set; }
public DateTime fecha { get; set; }
public decimal monto { get; set; }
public virtual ICollection<Canon> Canons { get; set; } = new List<Canon>();
}