Rename UserGroupPresentationModel to UserGroupResponseModel
This commit is contained in:
@@ -23,9 +23,9 @@ public class ByKeyUserGroupController : UserGroupControllerBase
|
||||
|
||||
[HttpGet("{id:guid}")]
|
||||
[MapToApiVersion("1.0")]
|
||||
[ProducesResponseType(typeof(UserGroupPresentationModel), StatusCodes.Status200OK)]
|
||||
[ProducesResponseType(typeof(UserGroupResponseModel), StatusCodes.Status200OK)]
|
||||
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
||||
public async Task<ActionResult<UserGroupPresentationModel>> ByKey(Guid id)
|
||||
public async Task<ActionResult<UserGroupResponseModel>> ByKey(Guid id)
|
||||
{
|
||||
IUserGroup? userGroup = await _userGroupService.GetAsync(id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user