Skip to content

Commit 52d30ad

Browse files
authored
doc(CodeSnippetService): update code file path (#4877)
* doc: 更改程序集名称 * doc: 微调倒计时时长
1 parent d4f3675 commit 52d30ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+49
-49
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<div class="bb-reboot-clock">
2-
<FlipClock ViewMode="FlipClockViewMode.CountDown" ShowHour="false" StartValue="TimeSpan.FromMinutes(2)"></FlipClock>
2+
<FlipClock ViewMode="FlipClockViewMode.CountDown" ShowHour="false" StartValue="TimeSpan.FromSeconds(140)"></FlipClock>
33
</div>

src/BootstrapBlazor.Server/Components/Pages/Localization.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ public class CultureController : Controller
240240
// @Localizer["N49"]
241241
options.AdditionalJsonFiles = new string[]
242242
{
243-
@@"D:\Argo\src\BootstrapBlazor\src\BootstrapBlazor.Shared\Locales\zh-TW.json",
244-
@@"D:\Argo\src\BootstrapBlazor\src\BootstrapBlazor.Shared\Locales\zh-CN.json"
243+
@@"D:\Argo\src\BootstrapBlazor\src\BootstrapBlazor.Server\Locales\zh-TW.json",
244+
@@"D:\Argo\src\BootstrapBlazor\src\BootstrapBlazor.Server\Locales\zh-CN.json"
245245
};
246246
});
247247
}

src/BootstrapBlazor.Server/Components/Samples/Cascaders.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public sealed partial class Cascaders
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
private Foo Model { get; set; } = new Foo();
1919

src/BootstrapBlazor.Server/Components/Samples/ColorPickers.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class ColorPickers
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private Foo? Dummy { get; set; } = new Foo() { Name = "#DDDDDD" };

src/BootstrapBlazor.Server/Components/Samples/DateTimeRanges.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ protected override void OnInitialized()
114114
/// <summary>
115115
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
116116
/// Foo class is used for Demo test, please download the source code if necessary
117-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
117+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
118118
/// </summary>
119119
private class ValidateFormRangeFoo : Foo
120120
{

src/BootstrapBlazor.Server/Components/Samples/Dialogs.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ private async Task OnSearchDialogClick()
208208
/// <summary>
209209
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
210210
/// Foo class is used for Demo test, please download the source code if necessary
211-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
211+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
212212
/// </summary>
213213
private async Task OnSaveDialogClick()
214214
{

src/BootstrapBlazor.Server/Components/Samples/Displays.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private static async Task<string> ByteArrayFormatter(byte[] source)
3737
/// <summary>
3838
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
3939
/// Foo class is used for Demo test, please download the source code if necessary
40-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
40+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
4141
/// </summary>
4242
[NotNull]
4343
private Foo? Model { get; set; }

src/BootstrapBlazor.Server/Components/Samples/EditDialogs.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private async Task NoRenderShowEditDialog()
5555
/// <summary>
5656
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
5757
/// Foo class is used for Demo test, please download the source code if necessary
58-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
58+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
5959
/// </summary>
6060
[Inject]
6161
[NotNull]

src/BootstrapBlazor.Server/Components/Samples/EditorForms.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public sealed partial class EditorForms
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private Foo? Model { get; set; }

src/BootstrapBlazor.Server/Components/Samples/ExportPdfButtons.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class ExportPdfButtons
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private Foo? Model { get; set; }

src/BootstrapBlazor.Server/Components/Samples/GlobalException.razor

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@
3535
<Pre>crit: BootstrapBlazor.Components.BlazorLogger[0]
3636
TimeStamp: 8/23/2021 12:20:46 PM
3737
MachineName: ECS-A399
38-
AppDomainName: BootstrapBlazor.Shared
38+
AppDomainName: BootstrapBlazor.Server
3939
OS: Microsoft Windows 10.0.17763
4040
OSArchitecture: X64
4141
ProcessArchitecture: X64
4242
Framework: .NET 5.0.9
4343
UserName: Argo
4444
EnvironmentName: Development
45-
IISRootPath: D:\Argo\src\BB\BootstrapBlazor\src\BootstrapBlazor.Shared\
45+
IISRootPath: D:\Argo\src\BB\BootstrapBlazor\src\BootstrapBlazor.Server\
4646
VSIDE: Microsoft Visual Studio Enterprise 2019 16.0
4747
Exception:: Attempted to divide by zero.
4848
*********************************************
4949
System.DivideByZeroException: Attempted to divide by zero.
50-
at BootstrapBlazor.Server.Components.Samples.GlobalException.OnClick() in D:\Argo\src\BB\BootstrapBlazor\src\BootstrapBlazor.Shared\Components\Samples\GlobalException.razor.cs:line 30</Pre>
50+
at BootstrapBlazor.Server.Components.Samples.GlobalException.OnClick() in D:\Argo\src\BB\BootstrapBlazor\src\BootstrapBlazor.Server\Components\Samples\GlobalException.razor.cs:line 30</Pre>
5151

5252
<p>@((MarkupString)Localizer["Step5"].Value)</p>
5353

src/BootstrapBlazor.Server/Components/Samples/InputGroups.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class InputGroups
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private Foo? Model { get; set; }

src/BootstrapBlazor.Server/Components/Samples/MultiSelects.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class MultiSelects
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo tet, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
private Foo Model { get; set; } = new Foo();
1919

src/BootstrapBlazor.Server/Components/Samples/Table/Tables.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class Tables
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesAutoRefresh.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesAutoRefresh
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
private List<Foo> Items { get; set; } = [];
1919

src/BootstrapBlazor.Server/Components/Samples/Table/TablesCell.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesCell
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumn.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesColumn
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnDrag.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesColumnDrag
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnList.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesColumnList
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnResizing.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesColumnResizing
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnTemplate.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesColumnTemplate
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesDialog.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesDialog
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private Table<Foo>? ProductTable { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesEdit.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesEdit
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesExcel.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesExcel
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesExport.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public partial class TablesExport
2222
/// <summary>
2323
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
2424
/// Foo class is used for Demo test, please download the source code if necessary
25-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
25+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
2626
/// </summary>
2727
[NotNull]
2828
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesFilter.razor.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesFilter
1313
/// <summary>
1414
/// Foo 类为 Demo 测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }
@@ -24,7 +24,7 @@ public partial class TablesFilter
2424

2525
private string SortString { get; set; } = "DateTime desc, Address";
2626

27-
private string ComponentSourceCodeUrl => $"{WebsiteOption.CurrentValue.GiteeRepositoryUrl}/blob/main/src/BootstrapBlazor.Shared/Components/Components/CustomerFilter.razor";
27+
private string ComponentSourceCodeUrl => $"{WebsiteOption.CurrentValue.GiteeRepositoryUrl}/blob/main/src/BootstrapBlazor.Server/Components/Components/CustomerFilter.razor";
2828

2929
[NotNull]
3030
private Table<Foo>? TableSetFilter { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesFixedColumn
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedHeader.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesFixedHeader
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesFooter.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public partial class TablesFooter
1515
/// <summary>
1616
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1717
/// Foo class is used for Demo test, please download the source code if necessary
18-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
18+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1919
/// </summary>
2020
[NotNull]
2121
private IEnumerable<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesHeader.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesHeader
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesLoading.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public partial class TablesLoading
1818
/// <summary>
1919
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
2020
/// Foo class is used for Demo test, please download the source code if necessary
21-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
21+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
2222
/// </summary>
2323
[NotNull]
2424
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesLookup.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesLookup
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesPages.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesPages
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesRow.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesRow
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public partial class TablesSearch
1313
/// <summary>
1414
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1515
/// Foo class is used for Demo test, please download the source code if necessary
16-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
16+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1717
/// </summary>
1818
[NotNull]
1919
private List<Foo>? Items { get; set; }

src/BootstrapBlazor.Server/Components/Samples/Table/TablesSelection.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public partial class TablesSelection
1414
/// <summary>
1515
/// Foo 类为Demo测试用,如有需要请自行下载源码查阅
1616
/// Foo class is used for Demo test, please download the source code if necessary
17-
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Shared/Data/Foo.cs
17+
/// https://gitee.com/LongbowEnterprise/BootstrapBlazor/blob/main/src/BootstrapBlazor.Server/Data/Foo.cs
1818
/// </summary>
1919
[NotNull]
2020
private List<Foo>? Items { get; set; }

0 commit comments

Comments
 (0)