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