9 lines
209 B
C#
9 lines
209 B
C#
namespace QtCNETAPI.Dtos.User
|
|
{
|
|
public class UserRefreshLoginDto
|
|
{
|
|
public string Email { get; set; } = string.Empty;
|
|
public string RefreshToken { get; set; } = string.Empty;
|
|
}
|
|
}
|