ClientSecret.cs 413 B

1234567891011121314
  1. // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
  2. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
  3. #pragma warning disable 1591
  4. namespace HaBook.IES.IdentityServer.AzureTableStorage.Entities
  5. {
  6. public class ClientSecret : Secret
  7. {
  8. public int ClientId { get; set; }
  9. public Client Client { get; set; }
  10. }
  11. }