- Add required keyword to string properties across all model classes - Initialize Part.NestedOn array with Array.Empty<int>() - Remove unused using statements from model files This improves null safety and code maintainability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
773 B
C#
33 lines
773 B
C#
namespace PepApi.Core.Models
|
|
{
|
|
public class NestSummary
|
|
{
|
|
public required string Name { get; set; }
|
|
|
|
public DateTime DateCreated { get; set; }
|
|
|
|
public DateTime DateLastModified { get; set; }
|
|
|
|
public required string Status { get; set; }
|
|
|
|
public required string Comments { get; set; }
|
|
|
|
public required string Customer { get; set; }
|
|
|
|
public required string ProgrammedBy { get; set; }
|
|
|
|
public int MaterialNumber { get; set; }
|
|
|
|
public required string MaterialGrade { get; set; }
|
|
|
|
public required string Notes { get; set; }
|
|
|
|
public bool HasErrors { get; set; }
|
|
|
|
public required string Revision { get; set; }
|
|
|
|
public required string Application { get; set; }
|
|
|
|
}
|
|
}
|