15 lines
321 B
C#
15 lines
321 B
C#
|
|
namespace BS.Shared.Core
|
|||
|
|
{
|
|||
|
|
public class RecurrenceInformation
|
|||
|
|
{
|
|||
|
|
public string PatternId { get; set; }
|
|||
|
|
public int Index { get; set; }
|
|||
|
|
|
|||
|
|
public RecurrenceInformation(string pPatternId, int pIndex)
|
|||
|
|
{
|
|||
|
|
PatternId = pPatternId;
|
|||
|
|
Index = pIndex;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|