using System; using System.Collections.Generic; using System.Text; namespace Common.Models.DigitalSignature { public class JwtResponse { public string Token { get; set; } public long ExpiresAt { get; set; } } }