47 lines
2.1 KiB
C#
47 lines
2.1 KiB
C#
using Indotalent.Data.Abstracts;
|
|
using Indotalent.Data.Interfaces;
|
|
using Indotalent.Data.Enums;
|
|
|
|
namespace Indotalent.Data.Entities;
|
|
|
|
public class Lead : BaseEntity, IHasAutoNumber, IMultiTenant
|
|
{
|
|
public string? TenantId { get; set; }
|
|
public string? AutoNumber { get; set; }
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? CompanyName { get; set; }
|
|
public string? CompanyDescription { get; set; }
|
|
public string? CompanyAddressStreet { get; set; }
|
|
public string? CompanyAddressCity { get; set; }
|
|
public string? CompanyAddressState { get; set; }
|
|
public string? CompanyAddressZipCode { get; set; }
|
|
public string? CompanyAddressCountry { get; set; }
|
|
public string? CompanyPhoneNumber { get; set; }
|
|
public string? CompanyFaxNumber { get; set; }
|
|
public string? CompanyEmail { get; set; }
|
|
public string? CompanyWebsite { get; set; }
|
|
public string? CompanyWhatsApp { get; set; }
|
|
public string? CompanyLinkedIn { get; set; }
|
|
public string? CompanyFacebook { get; set; }
|
|
public string? CompanyInstagram { get; set; }
|
|
public string? CompanyTwitter { get; set; }
|
|
public DateTime? DateProspecting { get; set; }
|
|
public DateTime? DateClosingEstimation { get; set; }
|
|
public DateTime? DateClosingActual { get; set; }
|
|
public decimal? AmountTargeted { get; set; }
|
|
public decimal? AmountClosed { get; set; }
|
|
public decimal? BudgetScore { get; set; }
|
|
public decimal? AuthorityScore { get; set; }
|
|
public decimal? NeedScore { get; set; }
|
|
public decimal? TimelineScore { get; set; }
|
|
public PipelineStage PipelineStage { get; set; }
|
|
public ClosingStatus ClosingStatus { get; set; }
|
|
public string? ClosingNote { get; set; }
|
|
public string? CampaignId { get; set; }
|
|
public Campaign? Campaign { get; set; }
|
|
public string? SalesTeamId { get; set; }
|
|
public SalesTeam? SalesTeam { get; set; }
|
|
public ICollection<LeadContact> LeadContacts { get; set; } = new List<LeadContact>();
|
|
public ICollection<LeadActivity> LeadActivities { get; set; } = new List<LeadActivity>();
|
|
} |