using System.Collections.Generic; namespace Fab2ApprovalSystem.Models; public class AuditEdit { public Audit Audit { get; set; } public IEnumerable AuditAreaList { get; set; } public List AuditeeNames { get; set; } public List AuditFindingCategoryList { get; set; } public IEnumerable AuditorList { get; set; } public IEnumerable AuditTypeList { get; set; } public IEnumerable CANoList { get; set; } public string Is8DQA { get; set; } public bool IsAdmin { get; set; } public bool IsSubmitter { get; set; } public List MesaUsers { get; set; } public IEnumerable UserList { get; set; } public bool RedirectToAction { get; set; } }