jellyfin/Jellyfin.Data/Entities/AccessSchedule.cs

77 lines
2.4 KiB
C#
Raw Normal View History

2020-05-15 23:24:01 +02:00
using System;
using System.ComponentModel.DataAnnotations;
2020-05-13 04:10:35 +02:00
using System.ComponentModel.DataAnnotations.Schema;
2020-05-15 23:24:01 +02:00
using System.Text.Json.Serialization;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Enums;
namespace Jellyfin.Data.Entities
{
public class AccessSchedule
{
/// <summary>
/// Initializes a new instance of the <see cref="AccessSchedule"/> class.
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </summary>
protected AccessSchedule()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="AccessSchedule"/> class.
/// </summary>
/// <param name="dayOfWeek">The day of the week.</param>
/// <param name="startHour">The start hour.</param>
/// <param name="endHour">The end hour.</param>
2020-05-15 23:24:01 +02:00
public AccessSchedule(DynamicDayOfWeek dayOfWeek, double startHour, double endHour, Guid userId)
2020-05-13 04:10:35 +02:00
{
2020-05-15 23:24:01 +02:00
UserId = userId;
2020-05-13 04:10:35 +02:00
DayOfWeek = dayOfWeek;
StartHour = startHour;
EndHour = endHour;
}
/// <summary>
/// Factory method
/// </summary>
/// <param name="dayOfWeek">The day of the week.</param>
/// <param name="startHour">The start hour.</param>
/// <param name="endHour">The end hour.</param>
/// <returns>The newly created instance.</returns>
2020-05-15 23:24:01 +02:00
public static AccessSchedule CreateInstance(DynamicDayOfWeek dayOfWeek, double startHour, double endHour, Guid userId)
2020-05-13 04:10:35 +02:00
{
2020-05-15 23:24:01 +02:00
return new AccessSchedule(dayOfWeek, startHour, endHour, userId);
2020-05-13 04:10:35 +02:00
}
2020-05-15 23:24:01 +02:00
[JsonIgnore]
2020-05-13 04:10:35 +02:00
[Key]
[Required]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2020-05-15 23:24:01 +02:00
public int Id { get; set; }
[Required]
[ForeignKey("Id")]
public Guid UserId { get; set; }
2020-05-13 04:10:35 +02:00
/// <summary>
/// Gets or sets the day of week.
/// </summary>
/// <value>The day of week.</value>
[Required]
public DynamicDayOfWeek DayOfWeek { get; set; }
/// <summary>
/// Gets or sets the start hour.
/// </summary>
/// <value>The start hour.</value>
[Required]
public double StartHour { get; set; }
/// <summary>
/// Gets or sets the end hour.
/// </summary>
/// <value>The end hour.</value>
[Required]
public double EndHour { get; set; }
}
}