//-----------------------------------------------------------------------
//
// Copyright (c) lanedirt. All rights reserved.
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
//
//-----------------------------------------------------------------------
namespace AliasVault.Shared.Models.WebApi.Security;
///
/// RefreshToken (user session) model.
///
public class RefreshTokenModel
{
///
/// Gets or sets the unique identifier for the refresh token.
///
public Guid Id { get; set; }
///
/// Gets or sets the device identifier associated with the refresh token.
///
public string DeviceIdentifier { get; set; } = null!;
///
/// Gets or sets the expiration date of the refresh token.
///
public DateTime ExpireDate { get; set; }
///
/// Gets or sets the creation date of the refresh token.
///
public DateTime CreatedAt { get; set; }
}