mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Rebrand database project.
This commit is contained in:
12
Marechai.Database/Models/ApplicationUser.cs
Normal file
12
Marechai.Database/Models/ApplicationUser.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.AspNetCore.Identity;
|
||||
|
||||
namespace Marechai.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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user