init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.BusinessLogic.HelperClasses
|
||||
{
|
||||
public class TanevRendjeListsCO
|
||||
{
|
||||
public TanevRendjeListsCO()
|
||||
{
|
||||
GlobalTiltas = new List<DateTime>();
|
||||
GlobalEngedelyezes = new List<DateTime>();
|
||||
OcsTiltas = new List<Tuple<DateTime, int>>();
|
||||
OcsEngedelyezes = new List<Tuple<DateTime, int>>();
|
||||
}
|
||||
|
||||
public List<DateTime> GlobalTiltas { get; set; }
|
||||
public List<DateTime> GlobalEngedelyezes { get; set; }
|
||||
public List<Tuple<DateTime, int>> OcsTiltas { get; set; }
|
||||
public List<Tuple<DateTime, int>> OcsEngedelyezes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user