15 lines
358 B
C#
15 lines
358 B
C#
using AMREZ.EOP.Contracts.DTOs.Integrations.SCB.Common;
|
|
|
|
namespace AMREZ.EOP.Contracts.DTOs.Integrations.SCB.OAuth;
|
|
|
|
public sealed class OAuthResponse
|
|
{
|
|
public SCBStatus? Status { get; set; }
|
|
public OAuthData? Data { get; set; }
|
|
}
|
|
|
|
public sealed class OAuthData
|
|
{
|
|
public string? AccessToken { get; set; }
|
|
public int? ExpiresIn { get; set; }
|
|
} |