4ee8b9101d
Create working for tenant and added in efcore and data layer
14 lines
301 B
C#
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;
|
|
}
|
|
}
|