mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-05 18:22:27 +00:00
18 lines
No EOL
481 B
C#
18 lines
No EOL
481 B
C#
#nullable enable
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Administration;
|
|
|
|
public struct AdminPanelStatistic
|
|
{
|
|
public AdminPanelStatistic(string statisticNamePlural, int count, string? viewAllEndpoint = null)
|
|
{
|
|
this.StatisticNamePlural = statisticNamePlural;
|
|
this.Count = count;
|
|
this.ViewAllEndpoint = viewAllEndpoint;
|
|
}
|
|
|
|
public readonly string StatisticNamePlural;
|
|
public readonly int Count;
|
|
|
|
public readonly string? ViewAllEndpoint;
|
|
} |