using System.ComponentModel.DataAnnotations; namespace PSTW_CentralSystem.Areas.OTcalculate.Models { public class FlexiHourModel { [Key] public int FlexiHourId { get; set; } public string FlexiHour { get; set; } } }