Files
flatrender/services/identity/FlatRender.IdentitySvc/Domain/Entities/UserCrm.cs
T

12 lines
442 B
C#
Raw Normal View History

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;
}