Tasks 184281, 184799, 184800, 184801 and 184802
Align .editorconfig files Move Controller logic to DMO classes GlobalVars.AppSettings = Models.AppSettings.GetFromConfigurationManager(); Question EditorConfig Project level editorconfig Format White Spaces AppSetting when EnvironmentVariable not set Corrective Actions Tests Schedule Actions Tests DMO Tests Controller Tests Get ready to use VSCode IDE
This commit is contained in:
21
Fab2ApprovalSystem/Models/AuditModels.cs
Normal file
21
Fab2ApprovalSystem/Models/AuditModels.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Fab2ApprovalSystem.Models;
|
||||
|
||||
public class AuditEdit {
|
||||
|
||||
public Audit Audit { get; set; }
|
||||
public IEnumerable<AuditedArea> AuditAreaList { get; set; }
|
||||
public List<string> AuditeeNames { get; set; }
|
||||
public List<AuditFindingCategory> AuditFindingCategoryList { get; set; }
|
||||
public IEnumerable<Auditor> AuditorList { get; set; }
|
||||
public IEnumerable<AuditType> AuditTypeList { get; set; }
|
||||
public IEnumerable<CANoList> CANoList { get; set; }
|
||||
public string Is8DQA { get; set; }
|
||||
public bool IsAdmin { get; set; }
|
||||
public bool IsSubmitter { get; set; }
|
||||
public List<AllUserModel> MesaUsers { get; set; }
|
||||
public IEnumerable<CAUserList> UserList { get; set; }
|
||||
public bool RedirectToAction { get; set; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user