Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace PowderCoating.Core.Entities;
|
||||
|
||||
public class JobTimeEntry : BaseEntity
|
||||
{
|
||||
public int JobId { get; set; }
|
||||
public int ShopWorkerId { get; set; }
|
||||
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!;
|
||||
public virtual ShopWorker Worker { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user