2022-09-17 22:13:35 +03:00
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Application.Users;
|
2022-09-17 22:13:35 +03:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public class ApplicationUserToken : IdentityUserToken<string>
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
}
|