mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
with corresponding GPUs, memory, processors, sound synths and storage related tables.
12 lines
427 B
C#
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; }
|
|
}
|
|
} |