ReportFormOption.cs
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;
}
}
}