using Gestor.Infrastructure.Entities.Generic; using Gestor.Model.Common; using System; using System.Runtime.CompilerServices; namespace Gestor.Infrastructure.Entities.Seguros { public class MetaVendedorDb : EntityBase { public virtual long Ano { get; set; } public virtual Gestor.Model.Common.Mes Mes { get; set; } public virtual decimal Valor { get; set; } public virtual VendedorDb Vendedor { get; set; } public MetaVendedorDb() { } } }