10 lines
181 B
C#
10 lines
181 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Toolkit.Foundation
|
|
{
|
|
public interface IEventParameter
|
|
{
|
|
List<object> GetValues(EventArgs args);
|
|
}
|
|
} |