11 lines
338 B
C#
11 lines
338 B
C#
namespace Knot.Modules.Profiles.Domain;
|
|
using Knot.Shared.Kernel;
|
|
public static class ProfilesErrors
|
|
{
|
|
public static readonly Error ProfileNotFound = new("Profile.NotFound", "Profile not found");
|
|
}
|
|
public static class IdentityErrors
|
|
{
|
|
public static readonly Error UserNotFound = new("Profile.NotFound", "Profile not found");
|
|
}
|