6 lines
114 B
C#
6 lines
114 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IEventParameter
|
|
{
|
|
List<object> GetValues(EventArgs args);
|
|
} |