Files
Toolkit2/Framework/Foundation/Navigation/IEventParameter.cs
T

10 lines
181 B
C#

using System;
using System.Collections.Generic;
namespace Toolkit.Foundation
{
public interface IEventParameter
{
List<object> GetValues(EventArgs args);
}
}