mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
12 lines
291 B
C#
12 lines
291 B
C#
using ShoppingAssistantApi.Application.Models.Dtos;
|
|
using ShoppingAssistantApi.Application.Models.Identity;
|
|
|
|
namespace ShoppingAssistantApi.Application.Models.Operations;
|
|
|
|
public class UpdateUserModel
|
|
{
|
|
public TokensModel Tokens { get; set; }
|
|
|
|
public UserDto User { get; set; }
|
|
}
|