19 lines
383 B
C#
19 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DigitalData.UserManager.Application
|
|
{
|
|
public enum MessageKey
|
|
{
|
|
UserNotFoundInLocalDB,
|
|
GroupNotFound,
|
|
GroupAlreadyExists,
|
|
UserAlreadyExists,
|
|
UserNotFound,
|
|
UnauthorizedUser
|
|
}
|
|
}
|