Files
laatzen/LaaProductionWeb/LaaProduction.Services/Models/ProductionApproval.cs
T

39 lines
1.0 KiB
C#

namespace LaaProduction.Services.Models
{
using System;
using System.ComponentModel.DataAnnotations;
public class ProductionApproval
{
public Int32 Id { get; set; }
public Int32? OrderNr { get; set; }
public Int32? PcbId { get; set; }
public Boolean SkipRadioCheck { get; set; }
public Int32? OverrideFwCheck { get; set; }
public Int32? OverrideLutCheck { get; set; }
public Int32? RequiredLifeTimeYearsAssembly { get; set; }
public Int32? RequiredLifeTimeYearsShipping { get; set; }
public DateTime? KitronProductionDate { get; set; }
public Double? MaxDrainedBatteryLoadPercent { get; set; }
public Int32? MaxStorageMonths { get; set; }
public DateTime ApprovalDate { get; set; }
public String ApproverName { get; set; }
[Required]
[MinLength(10)]
public String ApprovalComment { get; set; }
}
}