using Gestor.Infrastructure.Entities.Generic; using Gestor.Infrastructure.Entities.Seguros; using System; using System.Runtime.CompilerServices; namespace Gestor.Infrastructure.Entities.Ferramentas { public class ResponsavelTarefaDb : EntityBase { public virtual long IdTarefa { get; set; } public virtual UsuarioDb Usuario { get; set; } public ResponsavelTarefaDb() { } } }