23 lines
409 B
C#
23 lines
409 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
|
|
namespace MP.MON.Client.Pages
|
|
{
|
|
public partial class Counter : ComponentBase
|
|
{
|
|
#region Private Fields
|
|
|
|
private int currentCount = 0;
|
|
|
|
#endregion Private Fields
|
|
|
|
#region Private Methods
|
|
|
|
private void IncrementCount()
|
|
{
|
|
currentCount++;
|
|
}
|
|
|
|
#endregion Private Methods
|
|
}
|
|
} |