Files
marechai/Marechai.Database/Models/ApplicationUser.cs

12 lines
431 B
C#
Raw Normal View History

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
{
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
}