Files
Toolkit2/Toolkit.Foundation/Navigation/IEventParameter.cs
T
2022-12-05 18:52:37 +00:00

10 lines
181 B
C#

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