Files
DP44/Common/DTS.CommonCore/.svn/pristine/6a/6ab9636f6c8f306a14288c0834c7b8428741430c.svn-base

12 lines
254 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
public class LoginUserEvent : CompositePresentationEvent<LoginUserArg> { }
public class LoginUserArg
{
public string UserName { get; set; }
}
}