-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
I just had this idea and thought I'd share it as a possible enhancement.
using System;
using CodeStack.SwEx.Common.Attributes;
using CodeStack.SwEx.PMPage.Attributes;
public class CheckBoxDataModel
{
[Flags]
public enum Options_e
{
Option1 = 1,
Option2 = 2,
Option3 = 4,
}
//[CheckBox] Enhancement Request
public Options_e Options { get; set; }
// Current Workflow
public bool Option1 { get; set; }
public bool Option2 { get; set; }
public bool Option3 { get; set; }
}
Metadata
Metadata
Assignees
Labels
No labels
