MaterialsController: - Update to use MaterialShape enum - Add Type and Grade to imports - Fix display name formatting SeedController: - Update seed data to use MaterialShape enum - Add MaterialType assignments CuttingTool: - Add Notes property Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
350 B
C#
13 lines
350 B
C#
namespace CutList.Web.Data.Entities;
|
|
|
|
public class CuttingTool
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public decimal KerfInches { get; set; }
|
|
public bool IsDefault { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
public ICollection<Job> Jobs { get; set; } = new List<Job>();
|
|
}
|