16 lines
293 B
C#
16 lines
293 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Recibo
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Mes { get; set; }
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
public virtual ICollection<Canon> Canons { get; set; } = new List<Canon>();
|
|
}
|