16 lines
301 B
C#
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>();
|
|
}
|