Git Repository Public Repository

CPE_learningsite

URLs

Copy to Clipboard

This repository has no backups
This repository's network speed is throttled to 100KB/sec

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

using ServiceStack.OrmLite;
using ServiceStack.DataAnnotations;
using ServiceStack.Model;

namespace CPE.App.Web.Models
{
    public class CPEDataModel
    {
        [Alias("AdobeTransactions")]
        public partial class AdobeTransaction : IHasId<int>
        {
            [Alias("AdobeTransactionKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public DateTime Created { get; set; }

            [Required]
            public int MeetingSessionKey { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public DateTime StartDate { get; set; }

            [Required]
            public DateTime EndDate { get; set; }
        }

        [Alias("HostMessageLog")]
        public partial class HostMessageLog : IHasId<int>
        {
            [Alias("MessageLogKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public DateTime Timestamp { get; set; }

            [Required]
            public int SCO_ID { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public string Message { get; set; }
        }

        [Alias("MeetingDetails")]
        public partial class MeetingDetail : IHasId<int>
        {
            [Alias("MeetingKey")]
            [Required]
            public int Id { get; set; }

            public string CourseCode { get; set; }
            public string Instructor { get; set; }
            public string Location { get; set; }
            public string TopicID { get; set; }
            public string TopicName { get; set; }
        }

        [Alias("MeetingParticipantSessions")]
        public partial class MeetingParticipantSession : IHasId<int>
        {
            [Alias("MeetingParticipantSessionKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int MeetingSessionKey { get; set; }

            [Required]
            public int ParticipantKey { get; set; }

            [Required]
            public bool PlaySound { get; set; }

            [Required]
            public DateTime Created { get; set; }
        }

        [Alias("Meetings")]
        public partial class Meeting : IHasId<int>
        {
            [Alias("SCO_ID")]
            [Required]
            public int Id { get; set; }

            [Required]
            public int MeetingKey { get; set; }
        }

        [Alias("MeetingSessionHeartbeats")]
        public partial class MeetingSessionHeartbeat
        {
            [Required]
            public int MeetingSessionKey { get; set; }

            [Required]
            public DateTime Timestamp { get; set; }
        }

        [Alias("MeetingSessionHeartbeatTicks")]
        public partial class MeetingSessionHeartbeatTick
        {
            [Required]
            public int MeetingSessionKey { get; set; }

            [Required]
            public DateTime Timestamp { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public double PreviousInterval { get; set; }
        }

        [Alias("MeetingSessionPauses")]
        public partial class MeetingSessionPause : IHasId<int>
        {
            [Alias("MesstingSessionPauseKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int MeetingSessionKey { get; set; }

            [Required]
            public DateTime StartDate { get; set; }

            public DateTime? EndDate { get; set; }
        }

        [Alias("MeetingSessions")]
        public partial class MeetingSession : IHasId<int>
        {
            [Alias("MeetingSessionKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int SCO_ID { get; set; }

            public string Name { get; set; }

            [Required]
            public DateTime StartDate { get; set; }

            public DateTime? EndDate { get; set; }

            [Required]
            public int OwnerPrincipal_ID { get; set; }

            [Required]
            public bool Recording { get; set; }
        }

        [Alias("MeetingSettings")]
        public partial class MeetingSetting : IHasId<int>
        {
            [Alias("MeetingKey")]
            [Required]
            public int Id { get; set; }

            public int? Interval { get; set; }
            public string Text { get; set; }
            public int? Duration { get; set; }
        }

        [Alias("ParticipantEngagements")]
        public partial class ParticipantEngagement : IHasId<int>
        {
            [Alias("ParticipantEngagementKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int MeetingParticipantSessionKey { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public DateTime DisplayTime { get; set; }

            public DateTime? ResponseTime { get; set; }
        }

        [Alias("ParticipantEngagementsArchive")]
        public partial class ParticipantEngagementsArchive
        {
            [Required]
            public int ParticipantEngagementKey { get; set; }

            [Required]
            public int MeetingParticipantSessionKey { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public DateTime DisplayTime { get; set; }

            public DateTime? ResponseTime { get; set; }
        }

        [Alias("ParticipantEngagementVerification")]
        public partial class ParticipantEngagementVerification : IHasId<int>
        {
            [Alias("TrackingKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int MeetingParticipantSessionKey { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public DateTime DisplayTime { get; set; }

            [Required]
            public double PreviousAlertDelta { get; set; }
        }

        [Alias("ParticipantLog")]
        public partial class ParticipantLog : IHasId<int>
        {
            [Alias("LogKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int Sco_ID { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public string Details { get; set; }

            [Required]
            public DateTime Created { get; set; }
        }

        [Alias("ParticipantMessageLog")]
        public partial class ParticipantMessageLog : IHasId<int>
        {
            [Alias("MessageLogKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public DateTime Timestamp { get; set; }

            [Required]
            public int SCO_ID { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public string Message { get; set; }
        }

        [Alias("Participants")]
        public partial class Participant : IHasId<int>
        {
            [Alias("Principal_ID")]
            [Required]
            public int Id { get; set; }

            public string FirstName { get; set; }
            public string Email { get; set; }
            public string LastName { get; set; }
        }

        [Alias("ParticipantTracking")]
        public partial class ParticipantTracking : IHasId<int>
        {
            [Alias("ParticipantTrackingKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int MeetingParticipantSessionKey { get; set; }

            [Required]
            public int Principal_ID { get; set; }

            [Required]
            public DateTime StartDate { get; set; }

            public DateTime? EndDate { get; set; }
        }

        [Alias("RecordingSessions")]
        public partial class RecordingSession : IHasId<int>
        {
            [Alias("RecordingKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public int MeetingSCO_ID { get; set; }

            [Required]
            public int RecordingSCO_ID { get; set; }

            [Required]
            public string Name { get; set; }

            [Required]
            public string RecordingUrl { get; set; }

            [Required]
            public int Duration { get; set; }

            [Required]
            public DateTime StartTime { get; set; }

            [Required]
            public DateTime EndTime { get; set; }

            public int? MeetingSessionKey { get; set; }

            [Required]
            public string SurveyLink { get; set; }

            public string Passcode { get; set; }
        }

        [Alias("ServiceErrors")]
        public partial class ServiceError : IHasId<int>
        {
            [Alias("ErrorKey")]
            [AutoIncrement]
            public int Id { get; set; }

            [Required]
            public string ServiceMethod { get; set; }

            [Required]
            public string Message { get; set; }

            [Required]
            public string StackTrace { get; set; }

            [Required]
            public DateTime Logged { get; set; }
        }

        [Alias("ServiceLog")]
        public partial class ServiceLog : IHasId<Guid>
        {
            [Alias("LogKey")]
            [Required]
            public Guid Id { get; set; }

            [Required]
            public DateTime Created { get; set; }

            [Required]
            public string ServiceMethod { get; set; }

            [Required]
            public string Details { get; set; }
        }

        [Alias("sysdiagrams")]
        public partial class sysdiagram : IHasId<int>
        {
            [Required]
            public string name { get; set; }

            [Required]
            public int principal_id { get; set; }

            [Alias("diagram_id")]
            [AutoIncrement]
            public int Id { get; set; }

            public int? version { get; set; }
            public byte[] definition { get; set; }
        }
    }
}

Commits for CPE_learningsite/CPE/CPE.App/CPE.App.Web/Models/CPEDataModel.cs

Diff revisions: vs.
Revision Author Commited Message
4cd176 ... v.shishlov Fri 27 Aug, 2021 14:33:17 +0000

initial commit