feature: document instance exporting

resolves #154
This commit is contained in:
Gary Sharp
2025-02-14 16:05:23 +11:00
parent d3cef11796
commit 786d4809b5
31 changed files with 2194 additions and 38 deletions
@@ -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; }
}
}