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