Files
limanapp/EgwControlCenter.App/MainBlazor.razor.cs
T
2024-09-21 10:26:46 +02:00

13 lines
345 B
C#

namespace EgwControlCenter.App
{
public partial class MainBlazor
{
private int currentCount = 0;
private System.Reflection.AssemblyName? CurrAssembly { get; set; } = System.Reflection.Assembly.GetExecutingAssembly().GetName();
private void IncrementCount()
{
currentCount++;
}
}
}