added new endpoint to generate dade school token

This commit is contained in:
Vijay Uppu
2023-11-13 15:41:53 -05:00
parent dca119758a
commit 3b9e13ad35
5 changed files with 59 additions and 3 deletions

View File

@ -0,0 +1,10 @@
namespace DamageAssesment.Api.UsersAccess.Models
{
public class DadeSchoolToken
{
public string access_token { get; set; }
public int expires_in { get; set; }
public string token_type { get; set; }
public string scope { get; set; }
}
}