Add photos to database.

This commit is contained in:
2019-05-27 03:17:11 +01:00
parent 9a1e00cbee
commit c6f7a6be69
8 changed files with 4137 additions and 801 deletions

View File

@@ -1,6 +1,10 @@
using System.Collections.Generic;
using Microsoft.AspNetCore.Identity;
namespace Cicm.Database.Models
{
public class ApplicationUser : IdentityUser { }
public class ApplicationUser : IdentityUser
{
public virtual ICollection<MachinePhoto> Photos { get; set; }
}
}