12 lines
442 B
C#
12 lines
442 B
C#
|
|
namespace FlatRender.IdentitySvc.Domain.Entities;
|
||
|
|
|
||
|
|
/// <summary>Lightweight CRM overlay for a customer (tags / note / pipeline status).</summary>
|
||
|
|
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;
|
||
|
|
}
|