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

12 lines
427 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;
namespace Cicm.Database.Models
{
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
}