15 lines
320 B
C#
15 lines
320 B
C#
|
|
using System.Windows.Controls;
|
||
|
|
|
||
|
|
namespace RIZO.Client.BaseModule.Views
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Interaction logic for UserControl1.xaml
|
||
|
|
/// </summary>
|
||
|
|
public partial class UserManagementView : UserControl
|
||
|
|
{
|
||
|
|
public UserManagementView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|