Seyounth.Auto.Hs/share/Syc.Authorize.JwtBearer/JwtBearerErrorMsgResponse.cs

20 lines
422 B
C#
Raw Permalink Normal View History

2025-06-04 09:42:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Authorize.JwtBearer
{
internal class JwtBearerErrorMsgResponse
{
public int Code { get; set; }
public string Message { get; set; }
public object Data { get; set; }
public long Timestamp => DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
}
}