Files
CutList/CutList.Web/Data/Entities/CuttingTool.cs
AJ Isaacs 0e5b63c557 refactor: Update controllers for new Material model
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>
2026-02-04 23:38:21 -05:00

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>();
}