namespace PowderCoating.Core.Entities; public class JobTimeEntry : BaseEntity { public int JobId { get; set; } public string? UserId { get; set; } // FK to AspNetUsers public string? UserDisplayName { get; set; } // snapshot of worker name at entry creation time public DateTime WorkDate { get; set; } public decimal HoursWorked { get; set; } public string? Stage { get; set; } // e.g. "Sandblasting", "Coating", "Masking" — free text public string? Notes { get; set; } // Navigation public virtual Job Job { get; set; } = null!; }