1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

fix: dotnet format

This commit is contained in:
Ike Kottlowski 2025-03-26 09:00:55 -04:00
parent 9164bb1d9a
commit 06bd75bfe4
No known key found for this signature in database
GPG Key ID: C86308E3DCA6D76F
3 changed files with 123 additions and 129 deletions

View File

@ -1,10 +1,9 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.MySqlMigrations.Migrations namespace Bit.MySqlMigrations.Migrations;
{
/// <inheritdoc /> /// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration public partial class CreateOpaqueKeyExchangeCredential : Migration
{ {
@ -54,4 +53,3 @@ namespace Bit.MySqlMigrations.Migrations
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
} }
} }
}

View File

@ -1,10 +1,9 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.PostgresMigrations.Migrations namespace Bit.PostgresMigrations.Migrations;
{
/// <inheritdoc /> /// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration public partial class CreateOpaqueKeyExchangeCredential : Migration
{ {
@ -48,4 +47,3 @@ namespace Bit.PostgresMigrations.Migrations
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
} }
} }
}

View File

@ -1,10 +1,9 @@
using System; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable #nullable disable
namespace Bit.SqliteMigrations.Migrations namespace Bit.SqliteMigrations.Migrations;
{
/// <inheritdoc /> /// <inheritdoc />
public partial class CreateOpaqueKeyExchangeCredential : Migration public partial class CreateOpaqueKeyExchangeCredential : Migration
{ {
@ -48,4 +47,3 @@ namespace Bit.SqliteMigrations.Migrations
name: "OpaqueKeyExchangeCredential"); name: "OpaqueKeyExchangeCredential");
} }
} }
}