Files
Emergence/Emergence.api/Models/ErrorDetailResults.cs
T
chris 4ee8b9101d added a notes file for important running stuff
Create working for tenant and added in efcore and data layer
2026-04-02 09:05:53 +10:30

14 lines
301 B
C#

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;
}
}