< Summary

Class:MUNity.Schema.Project.ProjectInformation
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Project\ProjectInformation.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:37
Line coverage:0% (0 of 5)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:5
Method coverage:0% (0 of 5)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_ProjectId()100%10%
get_ProjectName()100%10%
get_ProjectShort()100%10%
get_OrganizationId()100%10%
get_Conferences()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Project\ProjectInformation.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Project
 6{
 7    /// <summary>
 8    /// The basic schema the MUNityAPI will sent when requestiong information about a project.
 9    /// </summary>
 10    public class ProjectInformation
 11    {
 12        /// <summary>
 13        /// The id of the project.
 14        /// </summary>
 015        public string ProjectId { get; set; }
 16
 17        /// <summary>
 18        /// The name for example: Model United Nations Schleswig-Holstein.
 19        /// </summary>
 020        public string ProjectName { get; set; }
 21
 22        /// <summary>
 23        /// The short name of the project for example: MUN-SH
 24        /// </summary>
 025        public string ProjectShort { get; set; }
 26
 27        /// <summary>
 28        /// The id of the organization that is hosting this project.
 29        /// </summary>
 030        public string OrganizationId { get; set; }
 31
 32        /// <summary>
 33        /// A list of conferences that is contained inside of this project.
 34        /// </summary>
 035        public IEnumerable<Conference.ConferenceSmallInfo> Conferences { get; set; }
 36    }
 37}