You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
308 B
10 lines
308 B
namespace Win_in.Sfs.Wms.DataExchange.Authenticaitons;
|
|
|
|
public class AuthenticationOptions
|
|
{
|
|
public string client_id { get; set; }
|
|
public string client_secret { get; set; }
|
|
public string grant_type { get; set; }
|
|
public string username { get; set; }
|
|
public string password { get; set; }
|
|
}
|
|
|