Torma Kristóf
634488c2d8
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
512 B
C#
23 lines
512 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace HanyadikHetVan.Data.Entities
|
|
{
|
|
public class WeeklyTimeSpan
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[Required]
|
|
public DateTime Startdate { get; set; }
|
|
|
|
public virtual ICollection<Pause> Pauses { get; set; }
|
|
|
|
public virtual ICollection<FunFact> FunFacts { get; set; }
|
|
|
|
public virtual User User { get; set; }
|
|
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|