19 lines
280 B
C#
19 lines
280 B
C#
|
|
namespace AyaNova.Api.ControllerHelpers
|
|
{
|
|
|
|
|
|
|
|
public class ApiCreatedResponse
|
|
{
|
|
|
|
public object Result { get; }
|
|
|
|
public ApiCreatedResponse(object result)
|
|
{
|
|
Result = result;
|
|
}
|
|
}//eoc
|
|
|
|
|
|
}//eons |