Torma Kristóf
634488c2d8
All checks were successful
continuous-integration/drone/push Build is passing
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; }
|
|
}
|
|
}
|