Files
components/LiteCharms.Features.TechShop/Leads/Entities/Lead.cs
T
Khwezi Mngoma 70c6e0bfbc
continuous-integration/drone/pr Build is passing
Split Features to create space for more projects
2026-05-24 13:19:09 +02:00

10 lines
254 B
C#

using LiteCharms.Features.TechShop.Customers.Entities;
namespace LiteCharms.Features.TechShop.Leads.Entities;
[EntityTypeConfiguration<LeadConfiguration, Lead>]
public class Lead : Models.Lead
{
public virtual Customer? Customer { get; set; }
}