Files
AlquilaFacil/Entidades/Recibo.cs
2024-10-28 22:42:02 -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>();
}