added a notes file for important running stuff

Create working for tenant and added in efcore and data layer
This commit is contained in:
2026-04-02 09:05:53 +10:30
parent ad107753b5
commit 4ee8b9101d
22 changed files with 415 additions and 26 deletions
@@ -0,0 +1,13 @@
namespace Emergence.api.Models;
public class ErrorDetailResults
{
public string Title { get; set; }
public string Description { get; set; }
public ErrorDetailResults(string Title, string Description)
{
this.Title = Title;
this.Description = Description;
}
}
@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace Emergence.api.Models;
public class ValidationProblemResult
{
public ModelStateDictionary ModelState { get; set; }
public ValidationProblemResult(ModelStateDictionary modelState)
{
ModelState = modelState;
}
}