Torma Kristóf
8347b10401
All checks were successful
continuous-integration/drone/push Build is passing
22 lines
491 B
C#
22 lines
491 B
C#
using Microsoft.AspNetCore.Identity;
|
|
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 IdentityUser Owner { get; set; }
|
|
|
|
public String OwnerId { get; set; }
|
|
}
|
|
}
|