12 lines
262 B
C#
12 lines
262 B
C#
|
using Microsoft.AspNetCore.Identity;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace HanyadikHetVan.Data.Entities
|
|||
|
{
|
|||
|
public class User : IdentityUser
|
|||
|
{
|
|||
|
public virtual ICollection<WeeklyTimeSpan> WeeklyTimeSpans { get; set; }
|
|||
|
}
|
|||
|
}
|