mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Major refactor and cleanup.
This commit is contained in:
@@ -26,16 +26,15 @@
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.AspNetCore.Identity;
|
||||
|
||||
namespace Marechai.Database.Models
|
||||
namespace Marechai.Database.Models;
|
||||
|
||||
public class ApplicationUser : IdentityUser
|
||||
{
|
||||
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; }
|
||||
public virtual ICollection<Dump> Dumps { get; set; }
|
||||
public virtual ICollection<BookScan> BookScans { get; set; }
|
||||
public virtual ICollection<DocumentScan> DocumentScans { get; set; }
|
||||
public virtual ICollection<MagazineScan> MagazineScans { get; set; }
|
||||
}
|
||||
public virtual ICollection<MachinePhoto> Photos { get; set; }
|
||||
public virtual ICollection<OwnedMachinePhoto> OwnedMachinePhotos { get; set; }
|
||||
public virtual ICollection<OwnedMachine> OwnedMachines { get; set; }
|
||||
public virtual ICollection<Dump> Dumps { get; set; }
|
||||
public virtual ICollection<BookScan> BookScans { get; set; }
|
||||
public virtual ICollection<DocumentScan> DocumentScans { get; set; }
|
||||
public virtual ICollection<MagazineScan> MagazineScans { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user