namespace AyCode.Blazor.Components.Components.Grids;
///
/// Represents the current edit state of the MgGrid
///
public enum MgEditState
{
///
/// No edit operation in progress
///
None,
///
/// Adding a new row
///
New,
///
/// Editing an existing row
///
Edit
}