chore: 增加 LGPL 协议声明

This commit is contained in:
Argo-Tianyi 2022-01-26 17:57:33 +08:00
parent 979361b20c
commit 8de82f119f
461 changed files with 2243 additions and 513 deletions

View File

@ -130,3 +130,6 @@ csharp_style_namespace_declarations=file_scoped:silent
[*.vb] [*.vb]
# Modifier preferences # Modifier preferences
visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion
[*.cs]
# Add file header
file_header_template = Copyright (c) Argo Zhang (argo@163.com). All rights reserved.\nLicensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.\nWebsite: https://admin.blazor.zone

View File

@ -161,9 +161,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BootStarpAdmin.DataAccess.S
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapClient.Web.Core", "src\blazor\client\BootstrapClient.Web.Core\BootstrapClient.Web.Core.csproj", "{FFDF9FF9-0B29-47D3-AD42-53A476B570EC}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapClient.Web.Core", "src\blazor\client\BootstrapClient.Web.Core\BootstrapClient.Web.Core.csproj", "{FFDF9FF9-0B29-47D3-AD42-53A476B570EC}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BootstrapClient.DataAccess.Models", "src\blazor\client\BootstrapClient.Web.Models\BootstrapClient.DataAccess.Models.csproj", "{CC3DF23A-2880-438F-BDEB-DB093E919ABA}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapClient.DataAccess.Models", "src\blazor\client\BootstrapClient.Web.Models\BootstrapClient.DataAccess.Models.csproj", "{CC3DF23A-2880-438F-BDEB-DB093E919ABA}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BootstrapAdmin.Caching", "src\blazor\admin\BootstrapAdmin.Caching\BootstrapAdmin.Caching.csproj", "{ADD20515-1C1C-418B-84F6-8B05A7AA315B}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapAdmin.Caching", "src\blazor\admin\BootstrapAdmin.Caching\BootstrapAdmin.Caching.csproj", "{ADD20515-1C1C-418B-84F6-8B05A7AA315B}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -1,4 +1,8 @@
using BootstrapBlazor.Components; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapBlazor.Components;
using FreeSql; using FreeSql;
using FreeSql.Internal.Model; using FreeSql.Internal.Model;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
namespace BootStarpAdmin.DataAccess.FreeSql.Extensions; namespace BootStarpAdmin.DataAccess.FreeSql.Extensions;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Extensions; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Extensions;
using BootStarpAdmin.DataAccess.FreeSql.Service; using BootStarpAdmin.DataAccess.FreeSql.Service;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;

View File

@ -1,4 +1,8 @@
namespace BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootStarpAdmin.DataAccess.FreeSql.Models;
class NavigationRole class NavigationRole
{ {

View File

@ -1,4 +1,8 @@
namespace BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootStarpAdmin.DataAccess.FreeSql.Models;
class RoleApp class RoleApp
{ {

View File

@ -1,4 +1,8 @@
namespace BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootStarpAdmin.DataAccess.FreeSql.Models;
class RoleGroup class RoleGroup
{ {

View File

@ -1,4 +1,8 @@
namespace BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootStarpAdmin.DataAccess.FreeSql.Models;
class UserGroup class UserGroup
{ {

View File

@ -1,4 +1,8 @@
namespace BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootStarpAdmin.DataAccess.FreeSql.Models;
class UserRole class UserRole
{ {

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
namespace BootStarpAdmin.DataAccess.FreeSql.Service; namespace BootStarpAdmin.DataAccess.FreeSql.Service;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Extensions; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Extensions;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;
namespace BootStarpAdmin.DataAccess.FreeSql.Service; namespace BootStarpAdmin.DataAccess.FreeSql.Service;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Longbow.Security.Cryptography; using Longbow.Security.Cryptography;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
namespace BootStarpAdmin.DataAccess.FreeSql.Service; namespace BootStarpAdmin.DataAccess.FreeSql.Service;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
namespace BootStarpAdmin.DataAccess.FreeSql.Service; namespace BootStarpAdmin.DataAccess.FreeSql.Service;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.FreeSql.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.FreeSql.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Longbow.Security.Cryptography; using Longbow.Security.Cryptography;

View File

@ -1,4 +1,8 @@
using BootStarpAdmin.DataAccess.SqlSugar.Service; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootStarpAdmin.DataAccess.SqlSugar.Service;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;
using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.DependencyInjection.Extensions;
using SqlSugar; using SqlSugar;

View File

@ -1,4 +1,8 @@
namespace BootStarpAdmin.DataAccess.SqlSugar.Extensions; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootStarpAdmin.DataAccess.SqlSugar.Extensions;
static class SqlSugarExtensions static class SqlSugarExtensions
{ {

View File

@ -1,4 +1,8 @@
using BootstrapBlazor.Components; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapBlazor.Components;
using SqlSugar; using SqlSugar;
namespace BootStarpAdmin.DataAccess.SqlSugar.Service; namespace BootStarpAdmin.DataAccess.SqlSugar.Service;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching.Services; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching.Services;
using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Primitives; using Microsoft.Extensions.Primitives;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.Caching.Services; using BootstrapAdmin.Caching.Services;
using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.DependencyInjection.Extensions;

View File

@ -1,6 +1,6 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/ // Website: https://admin.blazor.zone
using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Primitives; using Microsoft.Extensions.Primitives;

View File

@ -1,4 +1,8 @@
using Microsoft.Extensions.Caching.Memory; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Primitives; using Microsoft.Extensions.Primitives;
namespace BootstrapAdmin.Caching.Services; namespace BootstrapAdmin.Caching.Services;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.EFCore.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.EFCore.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.EFCore.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.EFCore.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.ChangeTracking; using Microsoft.EntityFrameworkCore.ChangeTracking;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.EFCore; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.EFCore;
using BootstrapAdmin.DataAccess.EFCore.Services; using BootstrapAdmin.DataAccess.EFCore.Services;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;

View File

@ -1,4 +1,6 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.DataAccess.EFCore.Models; namespace BootstrapAdmin.DataAccess.EFCore.Models;
@ -7,28 +9,13 @@ namespace BootstrapAdmin.DataAccess.EFCore.Models;
/// </summary> /// </summary>
public class NavigationRole public class NavigationRole
{ {
/// <summary>
///
/// </summary>
public int Id { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string? NavigationId { get; set; } public string? NavigationId { get; set; }
/// <summary>
///
/// </summary>
public Navigation? Navigation { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string? RoleId { get; set; } public string? RoleId { get; set; }
/// <summary>
///
/// </summary>
public Role? Role { get; set; }
} }

View File

@ -1,8 +1,6 @@
using System; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
using System.Collections.Generic; // Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
using System.Linq; // Website: https://admin.blazor.zone
using System.Text;
using System.Threading.Tasks;
namespace BootstrapAdmin.DataAccess.EFCore.Models; namespace BootstrapAdmin.DataAccess.EFCore.Models;
@ -11,11 +9,6 @@ namespace BootstrapAdmin.DataAccess.EFCore.Models;
/// </summary> /// </summary>
public class RoleApp public class RoleApp
{ {
/// <summary>
///
/// </summary>
public int ID { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>

View File

@ -1,16 +1,21 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.DataAccess.EFCore.Models; namespace BootstrapAdmin.DataAccess.EFCore.Models;
/// <summary>
///
/// </summary>
public class RoleGroup public class RoleGroup
{ {
public int Id { get; set; } /// <summary>
///
/// </summary>
public string? RoleId { get; set; } public string? RoleId { get; set; }
public Role? Role { get; set; } /// <summary>
///
/// </summary>
public string? GroupId { get; set; } public string? GroupId { get; set; }
public Group? Group { get; set; }
} }

View File

@ -1,31 +1,21 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.DataAccess.EFCore.Models; namespace BootstrapAdmin.DataAccess.EFCore.Models;
/// <summary>
///
/// </summary>
public class UserGroup public class UserGroup
{ {
/// <summary>
///
/// </summary>
public int Id { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string? UserId { get; set; } public string? UserId { get; set; }
/// <summary>
///
/// </summary>
public User? User { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string? GroupId { get; set; } public string? GroupId { get; set; }
/// <summary>
///
/// </summary>
public Group? Group { get; set; }
} }

View File

@ -1,31 +1,21 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.DataAccess.EFCore.Models; namespace BootstrapAdmin.DataAccess.EFCore.Models;
/// <summary>
///
/// </summary>
public class UserRole public class UserRole
{ {
/// <summary>
///
/// </summary>
public int Id { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string? UserId { get; set; } public string? UserId { get; set; }
/// <summary>
///
/// </summary>
public User? User { get; set; }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
public string? RoleId { get; set; } public string? RoleId { get; set; }
/// <summary>
///
/// </summary>
public Role? Role { get; set; }
} }

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.EFCore.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.EFCore.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using System; using System;

View File

@ -1,6 +1,6 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/ // Website: https://admin.blazor.zone
using BootstrapBlazor.Components; using BootstrapBlazor.Components;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using System; using System;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.EFCore.Models; using BootstrapAdmin.DataAccess.EFCore.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using System; using System;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using BootstrapAdmin.Caching; using BootstrapAdmin.Caching;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.EFCore.Models; using BootstrapAdmin.DataAccess.EFCore.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using System; using System;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.EFCore.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.EFCore.Models;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Longbow.Security.Cryptography; using Longbow.Security.Cryptography;

View File

@ -1,4 +1,8 @@
using System.ComponentModel.DataAnnotations; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,6 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel.DataAnnotations; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,6 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;

View File

@ -1,4 +1,8 @@
using System.ComponentModel; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel.DataAnnotations; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations;
using System.Xml.Linq; using System.Xml.Linq;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using System.ComponentModel.DataAnnotations; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations;
namespace BootstrapAdmin.DataAccess.Models; namespace BootstrapAdmin.DataAccess.Models;

View File

@ -1,4 +1,8 @@
using PetaPoco; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using PetaPoco;
using System.Reflection; using System.Reflection;
namespace BootstrapAdmin.DataAccess.PetaPoco; namespace BootstrapAdmin.DataAccess.PetaPoco;

View File

@ -1,6 +1,6 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/ // Website: https://admin.blazor.zone
using BootstrapBlazor.Components; using BootstrapBlazor.Components;
using PetaPoco; using PetaPoco;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.PetaPoco; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.PetaPoco;
using BootstrapAdmin.DataAccess.PetaPoco.Services; using BootstrapAdmin.DataAccess.PetaPoco.Services;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
using PetaPoco; using PetaPoco;
namespace BootstrapAdmin.DataAccess.PetaPoco.Services; namespace BootstrapAdmin.DataAccess.PetaPoco.Services;

View File

@ -1,6 +1,6 @@
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/ // Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using BootstrapBlazor.Components; using BootstrapBlazor.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using PetaPoco; using PetaPoco;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Microsoft.Extensions.Primitives; using Microsoft.Extensions.Primitives;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using PetaPoco; using PetaPoco;

View File

@ -1,4 +1,8 @@
using System; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System;
using BootstrapAdmin.Caching; using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Caching; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Caching;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using PetaPoco; using PetaPoco;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using PetaPoco; using PetaPoco;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using Longbow.Security.Cryptography; using Longbow.Security.Cryptography;
using PetaPoco; using PetaPoco;

View File

@ -1,4 +1,8 @@
using System.ComponentModel.DataAnnotations; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using System.ComponentModel.DataAnnotations;
using System.Xml.Linq; using System.Xml.Linq;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
namespace BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.Web.Core;
/// <summary> /// <summary>
/// ///

View File

@ -1,4 +1,8 @@
namespace BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.Web.Core;
/// <summary> /// <summary>
/// ///

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
namespace BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.Web.Core;
/// <summary> /// <summary>
/// 登录服务 /// 登录服务

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core; namespace BootstrapAdmin.Web.Core;

View File

@ -1,4 +1,8 @@
using Bootstrap.Security.Blazor; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using Bootstrap.Security.Blazor;
using BootstrapAdmin.DataAccess.Models; using BootstrapAdmin.DataAccess.Models;
namespace BootstrapAdmin.Web.Core.Services; namespace BootstrapAdmin.Web.Core.Services;

View File

@ -1,4 +1,8 @@
namespace BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.Web.Core;
/// <summary> /// <summary>
/// ///

View File

@ -14,7 +14,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\BootstrapAdmin.DataAccess.EFCore\BootstrapAdmin.DataAccess.EFCore.csproj" /> <ProjectReference Include="..\BootstrapAdmin.DataAccess.PetaPoco\BootstrapAdmin.DataAccess.PetaPoco.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

View File

@ -1,4 +1,8 @@
using Bootstrap.Security.Blazor; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using Bootstrap.Security.Blazor;
using BootstrapAdmin.Web.Services; using BootstrapAdmin.Web.Services;
using Microsoft.AspNetCore.Components.Authorization; using Microsoft.AspNetCore.Components.Authorization;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
using Microsoft.JSInterop; using Microsoft.JSInterop;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

View File

@ -1,4 +1,8 @@
using Bootstrap.Security.Blazor; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using Bootstrap.Security.Blazor;
using BootstrapAdmin.Web.Core.Services; using BootstrapAdmin.Web.Core.Services;
using BootstrapAdmin.Web.Services; using BootstrapAdmin.Web.Services;

View File

@ -1,4 +1,8 @@
namespace BootstrapAdmin.Web.Components; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.Web.Components;
/// <summary> /// <summary>
/// ///

View File

@ -1,4 +1,8 @@
namespace BootstrapAdmin.Web.Components; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
namespace BootstrapAdmin.Web.Components;
/// <summary> /// <summary>
/// ///

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
using BootstrapAdmin.Web.Validators; using BootstrapAdmin.Web.Validators;
using Microsoft.AspNetCore.Components.Forms; using Microsoft.AspNetCore.Components.Forms;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Models; using BootstrapAdmin.Web.Models;
namespace BootstrapAdmin.Web.Components namespace BootstrapAdmin.Web.Components

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Models; using BootstrapAdmin.Web.Models;
using BootstrapAdmin.Web.Utils; using BootstrapAdmin.Web.Utils;

View File

@ -1,4 +1,8 @@
using Bootstrap.Security.Blazor.HealthChecks; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using Bootstrap.Security.Blazor.HealthChecks;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Models;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.DataAccess.Models; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.DataAccess.Models;
using BootstrapAdmin.Web.Core; using BootstrapAdmin.Web.Core;
using BootstrapAdmin.Web.Extensions; using BootstrapAdmin.Web.Extensions;
using BootstrapAdmin.Web.Models; using BootstrapAdmin.Web.Models;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Core; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Core;
using BootstrapAdmin.Web.Extensions; using BootstrapAdmin.Web.Extensions;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

View File

@ -1,4 +1,8 @@
using BootstrapAdmin.Web.Services.SMS; // Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
// Website: https://admin.blazor.zone
using BootstrapAdmin.Web.Services.SMS;
namespace BootstrapAdmin.Web.Components; namespace BootstrapAdmin.Web.Components;

Some files were not shown because too many files have changed in this diff Show More