ReportFormOption.cs

19 lines | 414 B Blame History Raw Download
namespace Carelearning.Prototype.Models
{
    public class ReportFormOption : ReportFormOption<int>
    {
    }

    public class ReportFormOption<T>
    {
        public bool IsEnabled { get; set; }
        public bool IsChecked { get; set; }
        public string Text { get; set; }
        public T Value { get; set; }

        public ReportFormOption()
        {
            IsEnabled = true;
        }
    }
}