1234567891011121314151617181920212223242526 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace InteractiveKiosk
- {
- using System;
- using System.Collections.Generic;
-
- public partial class ScheduleForAttraction
- {
- public int IDScheduleForAttraction { get; set; }
- public int IDAttraction { get; set; }
- public int IDAttractionSchedule { get; set; }
- public int IDDayOfWeek { get; set; }
-
- public virtual Attraction Attraction { get; set; }
- public virtual AttractionSchedule AttractionSchedule { get; set; }
- public virtual DayOfWeek DayOfWeek { get; set; }
- }
- }
|