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>();
|
|
}
|