mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-23 15:50:12 +08:00
10 lines
219 B
C#
10 lines
219 B
C#
namespace DownKyi.Events
|
|
{
|
|
public class NavigationParam
|
|
{
|
|
public string ViewName { get; set; }
|
|
public string ParentViewName { get; set; }
|
|
public object Parameter { get; set; }
|
|
}
|
|
}
|