Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Console/3.2/RecurrentEvent.cs @ 2023

Last change on this file since 2023 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 363 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace HeuristicLab.Hive.Client.Console
5{
6  public class RecurrentEvent
7  {
8    public DateTime DateFrom { get; set; }
9    public DateTime DateTo { get; set; }
10    public bool AllDay { get; set; }
11    public int IncWeeks { get; set; }
12    public HashSet<DayOfWeek> WeekDays { get; set; }
13  }
14}
Note: See TracBrowser for help on using the repository browser.