mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 15:01:56 +00:00
Fixed created assets not showing on list until site refresh
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
using Berufsschule_HAM.Models;
|
||||
|
||||
public class AssetsCreateResponseModel(bool successful, string exception = "None")
|
||||
public class AssetsCreateResponseModel(bool successful, string? assetId = null, string exception = "None")
|
||||
{
|
||||
public bool Success { get; set; } = successful;
|
||||
public string? AssetId { get; set; } = assetId;
|
||||
|
||||
public string? Exception { get; set; } = exception;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user