mirror of
https://github.com/bitwarden/server
synced 2025-12-19 09:43:25 +00:00
* Init ClientSecret migration * Fix unit tests * Move to src/Sql/dbo_future * Formatting changes * Update migration date for next release * Swap to just executing sp_refreshview * Fix formatting * Add EF Migrations * Rename to ClientSecretHash * Fix unit test * EF column rename * Batch the migration * Fix formatting * Add deprecation notice to property * Move data migration * Swap to CREATE OR ALTER
10 lines
219 B
C#
10 lines
219 B
C#
using Bit.Core.SecretsManager.Entities;
|
|
|
|
namespace Bit.Core.SecretsManager.Models.Data;
|
|
|
|
public class ApiKeyClientSecretDetails
|
|
{
|
|
public ApiKey ApiKey { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
}
|