namespace PowderCoating.Core.Entities; /// /// Platform-wide tip of the day shown on the dashboard welcome section. /// Not tenant-scoped — visible to all companies. /// public class DashboardTip { public int Id { get; set; } public string TipText { get; set; } = string.Empty; public bool IsActive { get; set; } = true; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; }