API Response has to consist of 2 mandatory parts: - bool identifier `isSuccess` - generic JSON section `data` ```C# public Response<T> { public bool IsSuccess {get;} public List<Errors> Errors {get;} public T Data {get;} } ```
API Response has to consist of 2 mandatory parts:
- bool identifier
isSuccess- generic JSON section
data