feature: bulk generating user documents

This commit is contained in:
Gary Sharp
2022-12-04 13:43:13 +11:00
parent 4c19a1ef63
commit be99083d6a
13 changed files with 2969 additions and 26 deletions
@@ -0,0 +1,10 @@
namespace Disco.Web.Areas.API.Models.DocumentTemplate
{
public class BulkGenerateUserModel
{
public string Id { get; set; }
public string DisplayName { get; set; }
public string Scope { get; set; }
public bool IsError { get; set; }
}
}