10 lines
263 B
C#
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; }
|
|
|
|
} |