FedEX – Auth Response

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WooCommerceWeb.Models
{
    public class FedExAuthResponse
    {
        public string access_token { get; set; }
        public string token_type { get; set; }
        public int expires_in { get; set; }
        public string scope { get; set; }
    }


}

Share


Categories

Leave a Reply

Your email address will not be published. Required fields are marked *