// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using MyOffice.DbContext; #nullable disable namespace MyOffice.Migrations.Sqlite.Migrations { [DbContext(typeof(AppDbContext))] partial class AppDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "10.0.10"); modelBuilder.Entity("MyOffice.Data.Models.Accounts.Account", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CurrencyGlobalId") .IsRequired() .HasColumnType("TEXT"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("OwnerId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("CurrencyGlobalId"); b.HasIndex("OwnerId"); b.ToTable("Accounts"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountAccess", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("AccountId") .HasColumnType("TEXT"); b.Property("IsAllowManage") .HasColumnType("INTEGER"); b.Property("IsAllowRead") .HasColumnType("INTEGER"); b.Property("IsAllowWrite") .HasColumnType("INTEGER"); b.Property("Name") .HasColumnType("TEXT"); b.Property("OwnerId") .HasColumnType("TEXT"); b.Property("Type") .IsRequired() .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("OwnerId"); b.HasIndex("UserId"); b.HasIndex("AccountId", "OwnerId") .IsUnique(); b.HasIndex("AccountId", "UserId") .IsUnique(); b.ToTable("AccountAccesses"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountAccessInvite", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("AcceptedOn") .HasColumnType("TEXT"); b.Property("AccountId") .HasColumnType("TEXT"); b.Property("CreatedOn") .HasColumnType("TEXT"); b.Property("Email") .IsRequired() .HasColumnType("TEXT"); b.Property("IsAllowWrite") .HasColumnType("INTEGER"); b.Property("RejectedOn") .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("AccountId"); b.HasIndex("UserId"); b.ToTable("AccountAccessInvites"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountAccountCategory", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("AccountId") .HasColumnType("TEXT"); b.Property("CategoryId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("CategoryId"); b.HasIndex("AccountId", "CategoryId") .IsUnique(); b.ToTable("AccountAccountCategories"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountCategory", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("AccountCategories"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.Motion", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("AccountId") .HasColumnType("TEXT"); b.Property("AmountMinus") .HasPrecision(18, 6) .HasColumnType("TEXT"); b.Property("AmountPlus") .HasPrecision(18, 6) .HasColumnType("TEXT"); b.Property("CreatedOn") .HasColumnType("TEXT"); b.Property("DateTime") .HasColumnType("TEXT"); b.Property("DeletedOn") .HasColumnType("TEXT"); b.Property("Description") .HasColumnType("TEXT"); b.Property("ItemId") .HasColumnType("INTEGER"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("AccountId"); b.HasIndex("ItemId"); b.HasIndex("UserId"); b.ToTable("Motions"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.Currency", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CurrencyGlobalId") .IsRequired() .HasColumnType("TEXT"); b.Property("CurrentRateId") .HasColumnType("INTEGER"); b.Property("IsPrimary") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("ShortName") .IsRequired() .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("CurrencyGlobalId"); b.HasIndex("CurrentRateId"); b.HasIndex("UserId"); b.ToTable("Currencies"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.CurrencyGlobal", b => { b.Property("Id") .HasColumnType("TEXT"); b.Property("DefaultQuantity") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("Symbol") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("CurrencyGlobals"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.CurrencyRate", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("CurrencyId") .HasColumnType("TEXT"); b.Property("DateTime") .HasColumnType("TEXT"); b.Property("Quantity") .HasColumnType("INTEGER"); b.Property("Rate") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("CurrencyId"); b.ToTable("CurrencyRates"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.Item", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("CategoryId") .HasColumnType("TEXT"); b.Property("ItemGlobalId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("CategoryId"); b.HasIndex("ItemGlobalId"); b.ToTable("Items"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.ItemCategory", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("IsInternal") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("ItemCategories"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.ItemGlobal", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("ItemGlobals"); }); modelBuilder.Entity("MyOffice.Data.Models.Notifications.EmailTemplate", b => { b.Property("Id") .HasColumnType("TEXT"); b.Property("CreatedOn") .HasColumnType("TEXT"); b.Property("Description") .IsRequired() .HasColumnType("TEXT"); b.Property("Sender") .IsRequired() .HasColumnType("TEXT"); b.Property("SenderName") .IsRequired() .HasColumnType("TEXT"); b.Property("Subject") .IsRequired() .HasColumnType("TEXT"); b.Property("Template") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("EmailTemplates"); }); modelBuilder.Entity("MyOffice.Data.Models.Users.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("CurrencyId") .IsRequired() .HasColumnType("TEXT"); b.Property("Email") .IsRequired() .HasColumnType("TEXT") .UseCollation("NOCASE"); b.Property("FirstName") .HasColumnType("TEXT"); b.Property("FullName") .HasColumnType("TEXT"); b.Property("IsEmailConfirmed") .HasColumnType("INTEGER"); b.Property("LastName") .HasColumnType("TEXT"); b.Property("PasswordHash") .IsRequired() .HasColumnType("TEXT"); b.Property("Phone") .HasColumnType("TEXT"); b.Property("UserName") .IsRequired() .HasColumnType("TEXT") .UseCollation("NOCASE"); b.HasKey("Id"); b.HasIndex("CurrencyId"); b.ToTable("Users"); }); modelBuilder.Entity("MyOffice.Data.Models.Users.UserExternal", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("CreatedOn") .HasColumnType("TEXT"); b.Property("Email") .IsRequired() .HasColumnType("TEXT") .UseCollation("NOCASE"); b.Property("ExternalId") .IsRequired() .HasColumnType("TEXT"); b.Property("Provider") .IsRequired() .HasColumnType("TEXT") .UseCollation("NOCASE"); b.Property("UserId") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("UserClaims"); }); modelBuilder.Entity("MyOffice.Data.Models.Verifications.VerificationCode", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Code") .IsRequired() .HasColumnType("TEXT"); b.Property("CreatedOn") .HasColumnType("TEXT"); b.Property("Destination") .IsRequired() .HasColumnType("TEXT"); b.Property("DestinationType") .IsRequired() .HasColumnType("TEXT"); b.Property("ExpiresOn") .HasColumnType("TEXT"); b.Property("Metadata") .HasColumnType("TEXT"); b.Property("Template") .IsRequired() .HasColumnType("TEXT"); b.Property("UserId") .HasColumnType("TEXT"); b.Property("VerifiedOn") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("Verifications"); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("ApplicationType") .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("ClientId") .HasMaxLength(100) .HasColumnType("TEXT"); b.Property("ClientSecret") .HasColumnType("TEXT"); b.Property("ClientType") .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("ConcurrencyToken") .IsConcurrencyToken() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("ConsentType") .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("DisplayName") .HasColumnType("TEXT"); b.Property("DisplayNames") .HasColumnType("TEXT"); b.Property("JsonWebKeySet") .HasColumnType("TEXT"); b.Property("Permissions") .HasColumnType("TEXT"); b.Property("PostLogoutRedirectUris") .HasColumnType("TEXT"); b.Property("Properties") .HasColumnType("TEXT"); b.Property("RedirectUris") .HasColumnType("TEXT"); b.Property("Requirements") .HasColumnType("TEXT"); b.Property("Settings") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("ClientId") .IsUnique(); b.ToTable("OpenIddictApplications", (string)null); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("ApplicationId") .HasColumnType("TEXT"); b.Property("ConcurrencyToken") .IsConcurrencyToken() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("CreationDate") .HasColumnType("TEXT"); b.Property("Properties") .HasColumnType("TEXT"); b.Property("Scopes") .HasColumnType("TEXT"); b.Property("Status") .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("Subject") .HasMaxLength(400) .HasColumnType("TEXT"); b.Property("Type") .HasMaxLength(50) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("ApplicationId", "Status", "Subject", "Type"); b.ToTable("OpenIddictAuthorizations", (string)null); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreScope", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("ConcurrencyToken") .IsConcurrencyToken() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("Description") .HasColumnType("TEXT"); b.Property("Descriptions") .HasColumnType("TEXT"); b.Property("DisplayName") .HasColumnType("TEXT"); b.Property("DisplayNames") .HasColumnType("TEXT"); b.Property("Name") .HasMaxLength(200) .HasColumnType("TEXT"); b.Property("Properties") .HasColumnType("TEXT"); b.Property("Resources") .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("Name") .IsUnique(); b.ToTable("OpenIddictScopes", (string)null); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreToken", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("TEXT"); b.Property("ApplicationId") .HasColumnType("TEXT"); b.Property("AuthorizationId") .HasColumnType("TEXT"); b.Property("ConcurrencyToken") .IsConcurrencyToken() .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("CreationDate") .HasColumnType("TEXT"); b.Property("ExpirationDate") .HasColumnType("TEXT"); b.Property("Payload") .HasColumnType("TEXT"); b.Property("Properties") .HasColumnType("TEXT"); b.Property("RedemptionDate") .HasColumnType("TEXT"); b.Property("ReferenceId") .HasMaxLength(100) .HasColumnType("TEXT"); b.Property("Status") .HasMaxLength(50) .HasColumnType("TEXT"); b.Property("Subject") .HasMaxLength(400) .HasColumnType("TEXT"); b.Property("Type") .HasMaxLength(150) .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("AuthorizationId"); b.HasIndex("ReferenceId") .IsUnique(); b.HasIndex("ApplicationId", "Status", "Subject", "Type"); b.ToTable("OpenIddictTokens", (string)null); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.Account", b => { b.HasOne("MyOffice.Data.Models.Currencies.CurrencyGlobal", "CurrencyGlobal") .WithMany("Accounts") .HasForeignKey("CurrencyGlobalId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Users.User", "Owner") .WithMany("Accounts") .HasForeignKey("OwnerId"); b.Navigation("CurrencyGlobal"); b.Navigation("Owner"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountAccess", b => { b.HasOne("MyOffice.Data.Models.Accounts.Account", "Account") .WithMany("AccessRights") .HasForeignKey("AccountId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Users.User", "Owner") .WithMany("AccountAccessOwners") .HasForeignKey("OwnerId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany("AccountAccess") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Account"); b.Navigation("Owner"); b.Navigation("User"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountAccessInvite", b => { b.HasOne("MyOffice.Data.Models.Accounts.Account", "Account") .WithMany("Invites") .HasForeignKey("AccountId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany("AccountAccessInvites") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Account"); b.Navigation("User"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountAccountCategory", b => { b.HasOne("MyOffice.Data.Models.Accounts.Account", "Account") .WithMany("Categories") .HasForeignKey("AccountId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Accounts.AccountCategory", "Category") .WithMany("Accounts") .HasForeignKey("CategoryId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Account"); b.Navigation("Category"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountCategory", b => { b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany("AccountCategories") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.Motion", b => { b.HasOne("MyOffice.Data.Models.Accounts.Account", "Account") .WithMany("Motions") .HasForeignKey("AccountId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Items.Item", "Item") .WithMany("Motions") .HasForeignKey("ItemId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Users.User", null) .WithMany("AccountMotions") .HasForeignKey("UserId"); b.Navigation("Account"); b.Navigation("Item"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.Currency", b => { b.HasOne("MyOffice.Data.Models.Currencies.CurrencyGlobal", "CurrencyGlobal") .WithMany("Currencies") .HasForeignKey("CurrencyGlobalId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Currencies.CurrencyRate", "CurrentRate") .WithMany("Currencies") .HasForeignKey("CurrentRateId"); b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany("Currencies") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("CurrencyGlobal"); b.Navigation("CurrentRate"); b.Navigation("User"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.CurrencyRate", b => { b.HasOne("MyOffice.Data.Models.Currencies.Currency", "Currency") .WithMany("Rates") .HasForeignKey("CurrencyId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Currency"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.Item", b => { b.HasOne("MyOffice.Data.Models.Items.ItemCategory", "Category") .WithMany("Items") .HasForeignKey("CategoryId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("MyOffice.Data.Models.Items.ItemGlobal", "ItemGlobal") .WithMany("Items") .HasForeignKey("ItemGlobalId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Category"); b.Navigation("ItemGlobal"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.ItemCategory", b => { b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany("ItemCategories") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("MyOffice.Data.Models.Users.User", b => { b.HasOne("MyOffice.Data.Models.Currencies.CurrencyGlobal", "Currency") .WithMany() .HasForeignKey("CurrencyId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Currency"); }); modelBuilder.Entity("MyOffice.Data.Models.Users.UserExternal", b => { b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany("UserClaims") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("MyOffice.Data.Models.Verifications.VerificationCode", b => { b.HasOne("MyOffice.Data.Models.Users.User", "User") .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", b => { b.HasOne("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", "Application") .WithMany("Authorizations") .HasForeignKey("ApplicationId"); b.Navigation("Application"); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreToken", b => { b.HasOne("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", "Application") .WithMany("Tokens") .HasForeignKey("ApplicationId"); b.HasOne("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", "Authorization") .WithMany("Tokens") .HasForeignKey("AuthorizationId"); b.Navigation("Application"); b.Navigation("Authorization"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.Account", b => { b.Navigation("AccessRights"); b.Navigation("Categories"); b.Navigation("Invites"); b.Navigation("Motions"); }); modelBuilder.Entity("MyOffice.Data.Models.Accounts.AccountCategory", b => { b.Navigation("Accounts"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.Currency", b => { b.Navigation("Rates"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.CurrencyGlobal", b => { b.Navigation("Accounts"); b.Navigation("Currencies"); }); modelBuilder.Entity("MyOffice.Data.Models.Currencies.CurrencyRate", b => { b.Navigation("Currencies"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.Item", b => { b.Navigation("Motions"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.ItemCategory", b => { b.Navigation("Items"); }); modelBuilder.Entity("MyOffice.Data.Models.Items.ItemGlobal", b => { b.Navigation("Items"); }); modelBuilder.Entity("MyOffice.Data.Models.Users.User", b => { b.Navigation("AccountAccess"); b.Navigation("AccountAccessInvites"); b.Navigation("AccountAccessOwners"); b.Navigation("AccountCategories"); b.Navigation("AccountMotions"); b.Navigation("Accounts"); b.Navigation("Currencies"); b.Navigation("ItemCategories"); b.Navigation("UserClaims"); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", b => { b.Navigation("Authorizations"); b.Navigation("Tokens"); }); modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", b => { b.Navigation("Tokens"); }); #pragma warning restore 612, 618 } } }