InventoryManager / Entities / AspNetUserLogin.cs
AspNetUserLogin.cs
Raw
using System;
using System.Collections.Generic;

#nullable disable

namespace InventoryManager.Entities
{
    public partial class AspNetUserLogin
    {
        public string LoginProvider { get; set; }
        public string ProviderKey { get; set; }
        public string ProviderDisplayName { get; set; }
        public string UserId { get; set; }

        public virtual AspNetUser User { get; set; }
    }
}