10 lines
214 B
C#
10 lines
214 B
C#
|
|
namespace Yavsc.ViewModels.Controls
|
|||
|
|
{
|
|||
|
|
public class AjaxCheckBoxInfo
|
|||
|
|
{
|
|||
|
|
public string Text { get; set; }
|
|||
|
|
public string Value { get; set; }
|
|||
|
|
public bool Checked { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|