2018-10-26 07:22:53 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Teknik.IdentityServer.Models.Manage
|
|
|
|
|
{
|
|
|
|
|
public class CreateClientModel
|
|
|
|
|
{
|
2019-01-13 00:06:55 +01:00
|
|
|
|
public string Username { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
2019-01-20 08:27:53 +01:00
|
|
|
|
public string HomepageUrl { get; set; }
|
|
|
|
|
public string LogoUrl { get; set; }
|
|
|
|
|
public string CallbackUrl { get; set; }
|
2019-01-13 00:06:55 +01:00
|
|
|
|
public ICollection<string> AllowedScopes { get; set; }
|
2018-10-26 07:22:53 +02:00
|
|
|
|
}
|
|
|
|
|
}
|