Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 12345678910 |
- using Microsoft.AspNetCore.Identity;
-
- namespace Diligent.WebAPI.Data.Entities;
-
- public class User : IdentityUser<int>
- {
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string? PasswordResetToken { get; set; }
- }
|