Leistungen und Leistungskategorien werden jetzt nach ihrer Position sortiert. Windows-Klient + Mobil-Klient: Beim Kalender wird jetzt auch auf das Überschneiden mit Serienterminen geprüft.
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;
|
|
}
|
|
}
|
|
}
|