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,15 @@
namespace PowderCoating.Core.Entities;
/// <summary>
/// Immutable audit record written once at registration. Never updated or deleted.
/// </summary>
public class TermsAcceptance
{
public int Id { get; set; }
public string UserId { get; set; } = string.Empty;
public int CompanyId { get; set; }
public string TosVersion { get; set; } = string.Empty;
public DateTime AcceptedAt { get; set; } = DateTime.UtcNow;
public string? IpAddress { get; set; }
public string? UserAgent { get; set; }
}