@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Disco.Models.Services.Exporting
|
||||
{
|
||||
public class ExportOptionGroup : List<ExportOptionField>
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public ExportOptionGroup(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Disco.Models.Services.Exporting
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user