We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d93cf commit d7670e4Copy full SHA for d7670e4
CsuChhs.WebComponents/CsuChhs.WebComponents.csproj
@@ -6,7 +6,7 @@
6
<Nullable>enable</Nullable>
7
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8
<Authors>CHHS Application Development Team</Authors>
9
- <Version>1.0.7</Version>
+ <Version>1.0.8</Version>
10
<PackageProjectUrl>https://github.com/csu-chhs/CsuChhs.WebComponents</PackageProjectUrl>
11
<Company>College of Health and Human Sciences</Company>
12
<PackageId>CsuChhs.WebComponents</PackageId>
CsuChhs.WebComponents/ResourceModels/IProtectedPageResource.cs
@@ -0,0 +1,9 @@
1
+namespace CsuChhs.WebComponents.ResourceModels;
2
+
3
+public interface IProtectedPageResource<T>
4
+{
5
+ int CurrentPage { get; init; }
+ int TotalPages { get; init; }
+ List<T> Items { get; }
+ void UpdateItems(List<T> items);
+}
0 commit comments