using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MTWorkHR.Core.Entities.Base { public interface IHaveCompany { public long CompanyId { get; set; } } }