hanyadikhetvan-dotnethf/HanyadikHetVan/Data/Entities/WeeklyTimeSpan.cs
Torma Kristóf 8347b10401
All checks were successful
continuous-integration/drone/push Build is passing
big day behind me
2021-05-19 04:33:53 +02:00

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; }
}
}