using Indotalent.Data.Abstracts; using Indotalent.Data.Interfaces; namespace Indotalent.Data.Entities; public class SalesTeam : BaseEntity { public string? Name { get; set; } public string? Description { get; set; } public ICollection SalesRepresentativeList { get; set; } = new List(); }