2021-11-13 03:21:59 +00:00
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2021-11-22 22:57:51 +00:00
|
|
|
namespace Start.Server.Models {
|
|
|
|
public class ApplicationUser : IdentityUser {
|
2021-11-13 03:21:59 +00:00
|
|
|
/// <summary>The <see cref="BookmarkContainer"/>s that belong to this user</summary>
|
|
|
|
public List<BookmarkContainer>? BookmarkContainers { get; set; }
|
|
|
|
}
|
|
|
|
}
|