mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
10 lines
229 B
C#
10 lines
229 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Kavita.Models.Entities.User;
|
|
|
|
public class AppRole : IdentityRole<int>
|
|
{
|
|
public ICollection<AppUserRole> UserRoles { get; set; } = null!;
|
|
}
|