namespace FlatRender.IdentitySvc.Domain.Entities; /// Lightweight CRM overlay for a customer (tags / note / pipeline status). public class UserCrm { public Guid UserId { get; set; } public string[] Tags { get; set; } = []; public string? Note { get; set; } public string Status { get; set; } = "new"; // new | contacted | customer | churned public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; }