Files
PepApi.Core/PepApi.Core/Models/DrawingSummary.cs
T
aj c5be48a807 feat(drawings): add drawings API endpoint with comprehensive filtering
Add new /drawings endpoint with support for filtering by text fields,
date ranges, dimensions, and boolean flags. Includes MCP tools for
integration with Claude Code.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 13:11:42 -05:00

52 lines
1.2 KiB
C#

namespace PepApi.Core.Models
{
public class DrawingSummary
{
public int ID { get; set; }
public required string Name { get; set; }
public required string Customer { get; set; }
public required string CustID { get; set; }
public required string Revision { get; set; }
public required string Description { get; set; }
public required string Material { get; set; }
public required string MaterialGrade { get; set; }
public required string Status { get; set; }
public required string Type { get; set; }
public required string Application { get; set; }
public required string Programmer { get; set; }
public required string CreatedBy { get; set; }
public double Width { get; set; }
public double Length { get; set; }
public double TrueArea { get; set; }
public double CutLength { get; set; }
public DateTime? CreationDate { get; set; }
public DateTime? LastEditDate { get; set; }
public DateTime? ModifiedDate { get; set; }
public bool HasBevel { get; set; }
public bool HasLeadIn { get; set; }
public bool HasTab { get; set; }
}
}