Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
@@ -0,0 +1,13 @@
namespace PowderCoating.Core.Entities;
/// <summary>
/// Platform-wide tip of the day shown on the dashboard welcome section.
/// Not tenant-scoped — visible to all companies.
/// </summary>
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;
}