12 lines
117 B
C#
12 lines
117 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Common
|
|
{
|
|
public interface IAction
|
|
{
|
|
void Do();
|
|
|
|
string GetName();
|
|
}
|
|
}
|