786d4809b5
resolves #154
14 lines
403 B
C#
14 lines
403 B
C#
namespace Disco.Models.Services.Exporting
|
|
{
|
|
public class ExportOptionField
|
|
{
|
|
public string GroupName { get; set; }
|
|
public string Name { get; set; }
|
|
public string DisplayName { get; set; }
|
|
public string Description { get; set; }
|
|
public bool Checked { get; set; }
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|