feature: device document template bulk generation

This commit is contained in:
Gary Sharp
2025-08-17 18:22:03 +10:00
parent 676ff82e4b
commit ca7193a8fc
39 changed files with 4437 additions and 2429 deletions
@@ -0,0 +1,11 @@
namespace Disco.Web.Areas.API.Models.DocumentTemplate
{
public class BulkGenerateItemModel
{
public string Id { get; set; }
public string UserEmailAddress { get; set; }
public string UserDisplayName { get; set; }
public string Scope { get; set; }
public bool IsError { get; set; }
}
}