4ee8b9101d
Create working for tenant and added in efcore and data layer
13 lines
293 B
C#
13 lines
293 B
C#
using Microsoft.AspNetCore.Mvc.ModelBinding;
|
|
|
|
namespace Emergence.api.Models;
|
|
|
|
public class ValidationProblemResult
|
|
{
|
|
public ModelStateDictionary ModelState { get; set; }
|
|
public ValidationProblemResult(ModelStateDictionary modelState)
|
|
{
|
|
ModelState = modelState;
|
|
}
|
|
}
|