14 lines
340 B
C#
14 lines
340 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using PSTW_CentralSystem.Models;
|
|
|
|
namespace PSTW_CentralSystem.Areas.OTcalculate.Models
|
|
{
|
|
public class WeekendModel
|
|
{
|
|
[Key]
|
|
public int WeekendId { get; set; }
|
|
public required string Day { get; set; }
|
|
}
|
|
}
|