1pub type UserKey = u32;
2pub type GroupKey = u32;
3
4pub type CourseKey = u32;
5pub type DepartmentKey = u32;
6pub type BuildingKey = u32;
7pub type RoomKey = u32;
8pub type TeacherKey = u32;
9pub type StudentKey = u32;
10pub type ClassKey = u32;
11pub type ClassInstanceKey = u32;
12pub type ShiftKey = u32;
13pub type EnrollmentKey = u32;
14pub type FileKey = u32;
15pub type PlaceKey = u32;
16pub type PlaceFeatureKey = u32;
17
18pub type NewsPageKey = (u16, u32);
20pub type NewsItemKey = u32;
21
22pub type EventsPageKey = (u16, u32);
23pub type EventKey = u32;
24
25
26pub type LearningAreaKey = u32;
27pub type LearningSubareaKey = u32;
28pub type LearningSectionKey = u32;
29pub type QuestionKey = u32;
30pub type ServiceKey = u32;