Files
.vscode
Fab2ApprovalMKLink
Fab2ApprovalSystem
.vscode
App_Start
Content
Controllers
DMO
EmailTemplates
FTPBatch
JobSchedules
Jobs
Lib
Misc
Models
PdfGenerator
Properties
Scripts
Utilities
ViewModels
ApproversListViewModel.cs
ChangeControlViewModel.cs
CloseToQDBOptionViewModel.cs
ECNTrainingAssignment.cs
ECNTrainingAssignments.cs
IssueWithExistingLotsViewModel.cs
LTMaterial.cs
LotDispositionLotSummaryViewModel.cs
LotDispositionViewModel.cs
LotStatusOptionViewModel.cs
OOOViewModel.cs
OpenActionItemViewModel.cs
PdfViewModel.cs
ReportsViewModels.cs
Views
fonts
.editorconfig
Fab2ApprovalSystem.csproj
Global.asax
Global.asax.cs
Project_Readme.html
README.md
Startup.cs
Test.html
Web.Debug.config
Web.Release.config
Web.config
favicon.ico
package.json
pipelines-manual.yml
pipelines.yml
Fab2ApprovalTests
Kendo
MesaFabApproval.API
MesaFabApproval.API.Test
MesaFabApproval.Client
MesaFabApproval.Client.Test
MesaFabApproval.Shared
SQL
references
.editorconfig
.gitignore
Fab2ApprovalSystem.sln
Fab2ApprovalSystem.yml
README.md
mesa-fab-approval/Fab2ApprovalSystem/ViewModels/ChangeControlViewModel.cs
Mike Phares b99b721458 Moved System.IO references from DMO classes to Static Helpers
Removed nugetSource from pipeline
Removed more comments
Created Static Classes for most DMO / Controller Classes
Push ConfigurationManager.AppSettings to controller
Align Tests with other Projects
2024-12-11 09:29:01 -07:00

40 lines
1.3 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Fab2ApprovalSystem.ViewModels;
public class ChangeControlViewModel {
public int PlanNumber { get; set; }
public int OwnerID { get; set; }
public string OwnerName { get; set; }
public byte CurrentStep { get; set; }
public int Status { get; set; }
public int MeetingExist { get; set; }
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
public DateTime? ClosedDate { get; set; }
public int ChangeLevel { get; set; }
public int IsITAR { get; set; }
public int IsMedical { get; set; }
public int IsRadHard { get; set; }
public int IsAutomotive { get; set; }
public string Title { get; set; }
public string ReasonForChange { get; set; }
public string ChangeDescription { get; set; }
public string Notes { get; set; }
public string RecordLockByName { get; set; }
public bool PCRBClosed { get; set; }
public bool RecordLockIndicator { get; set; }
public int RecordLockedBy { get; set; }
public bool RecordLocked { get; set; }
public DateTime RecordLockedDate { get; set; }
public DateTime LastUpdateDate { get; set; }
public int PCR1ID { get; set; }
public int PCR2ID { get; set; }
public int PCR3ID { get; set; }
public string PlanTitle { get; set; }
public ChangeControlViewModel() {
}
}