source: src/FinkiChattery/FinkiChattery.Identity/Data/Models/ApplicationUser.cs@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 227 bytes
Line 
1using Microsoft.AspNetCore.Identity;
2using FinkiChattery.Common.User;
3
4namespace FinkiChattery.Identity.Models
5{
6 public class ApplicationUser : IdentityUser<long>
7 {
8 public UserRole Role { get; set; }
9 }
10}
Note: See TracBrowser for help on using the repository browser.