added new endpoint to generate dade school token

This commit is contained in:
Vijay Uppu
2023-11-13 15:42:45 -05:00
parent 126da500a1
commit eb0df19522
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; }
}
}