-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathScoreDetail.cs
More file actions
31 lines (28 loc) · 1.09 KB
/
ScoreDetail.cs
File metadata and controls
31 lines (28 loc) · 1.09 KB
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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace QuizApps
{
using System;
using System.Collections.Generic;
public partial class ScoreDetail
{
public int ScoreDetailsId { get; set; }
public int UserId { get; set; }
public int Attempted { get; set; }
public int Corrected { get; set; }
public System.DateTime date { get; set; }
public decimal Score { get; set; }
public bool Active { get; set; }
public int QuesDetailId { get; set; }
public string Duration { get; set; }
public Nullable<int> SubID { get; set; }
public virtual QuesDetail QuesDetail { get; set; }
public virtual user user { get; set; }
}
}