Files
marechai/Cicm.Database/Models/ApplicationUser.cs
Natalia Portillo 3813ad80cf Move old owned_computers and owned_consoles tables to a new OwnedMachines table
with corresponding GPUs, memory, processors, sound synths and storage related tables.
2019-05-29 21:13:09 +01:00

12 lines
427 B
C#

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