Files
Hushian/Hushian.Application/Constants/CustomClaimTypes.cs

14 lines
258 B
C#
Raw Normal View History

2025-06-28 16:43:25 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-06-29 15:29:51 +03:30
namespace Hushian.Application.Constants
2025-06-28 16:43:25 +03:30
{
2025-06-29 15:29:51 +03:30
public static class CustomClaimTypes
2025-06-28 16:43:25 +03:30
{
2025-06-29 15:29:51 +03:30
public const string Uid = "uid";
2025-06-28 16:43:25 +03:30
}
}