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

User.cs 394B

12345678910111213
  1. using Microsoft.AspNetCore.Identity;
  2. namespace Diligent.WebAPI.Data.Entities;
  3. public class User : IdentityUser<int>
  4. {
  5. public string FirstName { get; set; }
  6. public string LastName { get; set; }
  7. public bool? IsEnabled { get; set; }
  8. public string? Position { get; set; }
  9. public string? LinkedIn { get; set; }
  10. public List<UserCategories> UserCategories { get; set; }
  11. }