Fix Redundance Reference

This commit is contained in:
Thanakarn Klangkasame
2025-10-03 10:33:55 +07:00
parent 33470d5fd4
commit d266463c9f
20 changed files with 440 additions and 29 deletions

View File

@@ -1,6 +1,15 @@
using AMREZ.EOP.Contracts.DTOs.Integrations.SCB.Common;
namespace AMREZ.EOP.Contracts.DTOs.Integrations.SCB.OAuth;
public class OAuthResponse
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; }
}