namespace Neo.Afx.Services.Forms { /// /// Checklist Template Status Enums /// public enum ChecklistTemplateStatusEnum { /// /// Pending status /// Pending = 1, /// /// Active status /// Active = 2, /// /// InActive status /// InActive = 3, /// /// Cancelled status /// Cancelled = 4 } }