update api to include allowedgroups
This commit is contained in:
		| @@ -13,6 +13,7 @@ public record CharaDataFullDto(string Id, UserData Uploader) : CharaDataDto(Id, | ||||
|     public string ManipulationData { get; set; } = string.Empty; | ||||
|     public int DownloadCount { get; set; } = 0; | ||||
|     public List<UserData> AllowedUsers { get; set; } = []; | ||||
|     public List<GroupData> AllowedGroups { get; set; } = []; | ||||
|     public List<GamePathEntry> FileGamePaths { get; set; } = []; | ||||
|     public List<GamePathEntry> FileSwaps { get; set; } = []; | ||||
|     public List<GamePathEntry> OriginalFiles { get; set; } = []; | ||||
|   | ||||
| @@ -11,6 +11,7 @@ public record CharaDataUpdateDto(string Id) | ||||
|     public string? CustomizeData { get; set; } | ||||
|     public string? ManipulationData { get; set; } | ||||
|     public List<string>? AllowedUsers { get; set; } | ||||
|     public List<string>? AllowedGroups { get; set; } | ||||
|     public List<GamePathEntry>? FileGamePaths { get; set; } | ||||
|     public List<GamePathEntry>? FileSwaps { get; set; } | ||||
|     public AccessTypeDto? AccessType { get; set; } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stanley Dimant
					Stanley Dimant