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
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CPE.App.Web.Models
{
    /// <summary>
    /// Release details as retrieved from the API
    /// </summary>
    public class ReleaseModel
    {

        public string ReleaseCode { get; set; }
        public DateTime Created { get; set; }
        public string Status { get; set; }
        public string Description { get; set; }
        public int ReleaseViews { get; set; }
        public int ReleaseViewsThisMonth { get; set; }
        public int ReleasePasses { get; set; }
        public int ReleaseFails { get; set; }
        public DateTime? ReleaseLastView { get; set; }
        public string VersionNumber { get; set; }
        public string ReleaseMode { get; set; }
        public string LrsEndpoint { get; set; }
        public string LrsEndpointUsername { get; set; }
        public string LearnerAccess { get; set; }
        public ProjectModel Project { get; set; } 
        public string EditUrl { get; set; }
        public string LaunchUrl { get; set; }
    }
}

Commits for CPE_learningsiteCPE/CPE.App/CPE.App.Web/Models/ElucidatModels/ReleaseModel.cs

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

initial commit