10 lines
214 B
C#
10 lines
214 B
C#
using System.Numerics;
|
|
|
|
namespace AquaCubeIT.Service.NetFloppy.Models
|
|
{
|
|
public class RefreshResponsePayload : LogonResponsePayload
|
|
{
|
|
public string RefreshToken { get; set; } = string.Empty;
|
|
}
|
|
}
|