File tree Expand file tree Collapse file tree
src/components/BootstrapBlazor.Region/Data Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
2+ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+ // Website: https://www.blazor.zone or https://argozhang.github.io/
4+
5+ namespace BootstrapBlazor . Components ;
6+
7+ readonly record struct CityItem
8+ {
9+ public string Name { get ; init ; }
10+
11+ public string PinYin { get ; init ; }
12+ }
File renamed without changes.
Original file line number Diff line number Diff line change 1+ // Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
2+ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+ // Website: https://www.blazor.zone or https://argozhang.github.io/
4+
5+ namespace BootstrapBlazor . Components ;
6+
7+ readonly record struct ProvinceItem
8+ {
9+ public string Name { get ; init ; }
10+
11+ public string PinYin { get ; init ; }
12+
13+ public HashSet < CityItem > Cities { get ; init ; }
14+ }
You can’t perform that action at this time.
0 commit comments