26 lines
664 B
C#
26 lines
664 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PARR.DAL.Context;
|
|
using PARR.Domain.Constants;
|
|
using PARR.Domain.Entities.Base;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace PARR.DAL.Models
|
|
{
|
|
[Table("WeekendDays", Schema = DatabaseSchemas.Schedule)]
|
|
[Index(nameof(Date), IsUnique = true)]
|
|
public class WeekendDay : IBaseEntity
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
|
|
[NotMapped]
|
|
public DateTimeOffset DateCreated { get; set; }
|
|
|
|
[NotMapped]
|
|
public DateTimeOffset? DateModified { get; set; }
|
|
|
|
public DateOnly Date { get; set; }
|
|
}
|
|
}
|