14 lines
326 B
C#
14 lines
326 B
C#
namespace BeWoPlanerMobil.Util
|
|
{
|
|
public class RecurrenceInformation
|
|
{
|
|
public string PatternId { get; set; }
|
|
public int Index { get; set; }
|
|
|
|
public RecurrenceInformation(string pPatternId, int pIndex)
|
|
{
|
|
PatternId = pPatternId;
|
|
Index = pIndex;
|
|
}
|
|
}
|
|
} |