hello-shop/src/HelloShop.IdentityService/Models/Accounts/AccountRefreshRequest.cs

10 lines
263 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.IdentityService;
public class AccountRefreshRequest
{
public required string RefreshToken { get; init; }
}