Wave/Wave/Data/ApplicationUser.cs

7 lines
163 B
C#

using Microsoft.AspNetCore.Identity;
namespace Wave.Data;
public class ApplicationUser : IdentityUser {
public ProfilePicture? ProfilePicture { get; set; }
}