mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
8 lines
192 B
C#
8 lines
192 B
C#
namespace DownKyi.Events;
|
|
|
|
public class NavigationParam
|
|
{
|
|
public string? ViewName { get; set; }
|
|
public string? ParentViewName { get; set; }
|
|
public object? Parameter { get; set; }
|
|
} |