12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
public class LoginUserEvent : PubSubEvent<LoginUserArg> { }
|
|
|
|
public class LoginUserArg
|
|
{
|
|
public string UserName { get; set; }
|
|
}
|
|
}
|