選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12345678910
  1. using AspNetCore.Identity.MongoDbCore.Models;
  2. using MongoDbGenericRepository.Attributes;
  3. namespace Diligent.WebAPI.Data.Entities
  4. {
  5. [CollectionName("Roles")]
  6. public class Roles : MongoIdentityRole<Guid>
  7. {
  8. }
  9. }