Create a more general AssetResponseModel and use in delete

This commit is contained in:
anomny
2025-10-06 20:32:48 +02:00
parent 839cee9292
commit 7d167aa877
3 changed files with 14 additions and 20 deletions

View File

@@ -0,0 +1,7 @@
public class AssetsResponseModel(bool successful, string exception = "none")
{
public bool Success { get; set; } = successful;
public string? Exception { get; set; } = exception;
}