using System.Collections.Generic; using Microsoft.AspNetCore.Identity; namespace Cicm.Database.Models { public class ApplicationUser : IdentityUser { public virtual ICollection Photos { get; set; } public virtual ICollection OwnedMachinePhotos { get; set; } public virtual ICollection OwnedMachines { get; set; } } }