Apply formatting to remaining unformatted files

This commit is contained in:
Neil Brommer 2021-11-22 14:57:51 -08:00
parent 57953fd509
commit c53d7b8ce3
10 changed files with 145 additions and 147 deletions

View file

@ -4,10 +4,8 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Start.Server.Models
{
public class ApplicationUser : IdentityUser
{
namespace Start.Server.Models {
public class ApplicationUser : IdentityUser {
/// <summary>The <see cref="BookmarkContainer"/>s that belong to this user</summary>
public List<BookmarkContainer>? BookmarkContainers { get; set; }
}