Click here to Skip to main content
15,893,161 members
Articles / Desktop Programming / XAML

YouGrade - Silverlight Multimedia Exam Suite

Rate me:
Please Sign up or sign in to vote.
4.96/5 (62 votes)
5 Jun 2010CPOL16 min read 133.9K   3.1K   133  
A multimedia exam suite built on Silverlight and Youtube
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;

namespace YouGrade.Silverlight.Core.Model
{
    public class ExamTakeTO
    {
        public int Id { get; set; }
        public int ExamId { get; set; }
        public int UserId { get; set; }
        public DateTime StartDateTime { get; set; }
        public TimeSpan Duration { get; set; }
        public int Grade { get; set; }
        public string Status { get; set; }
        public List<AnswerTO> Answers { get; set; }
    }

    public enum ExamTakeStatus
    {
        Pending,
        Open,
        Paused,
        Finished,
        Canceled
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions