2019-05-27 03:17:11 +01:00
|
|
|
using System.Collections.Generic;
|
2019-05-27 03:00:04 +01:00
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
|
|
2020-02-10 02:10:18 +00:00
|
|
|
namespace Marechai.Database.Models
|
2019-05-27 03:00:04 +01:00
|
|
|
{
|
2019-05-27 03:17:11 +01:00
|
|
|
public class ApplicationUser : IdentityUser
|
|
|
|
|
{
|
2019-05-29 21:13:09 +01:00
|
|
|
public virtual ICollection<MachinePhoto> Photos { get; set; }
|
|
|
|
|
public virtual ICollection<OwnedMachinePhoto> OwnedMachinePhotos { get; set; }
|
|
|
|
|
public virtual ICollection<OwnedMachine> OwnedMachines { get; set; }
|
2019-05-27 03:17:11 +01:00
|
|
|
}
|
2019-05-27 03:00:04 +01:00
|
|
|
}
|