mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
10 lines
236 B
C#
10 lines
236 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Cicm.Database.Models
|
|
{
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
public virtual ICollection<MachinePhoto> Photos { get; set; }
|
|
}
|
|
} |