added new endpoint to generate dade school token

This commit is contained in:
Vijay Uppu
2023-11-13 15:13:25 -05:00
parent 3b07723ebe
commit 9c97f08289
5 changed files with 59 additions and 2 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; }
}
}