< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_OrganizationId()100%10%
get_OrganizationName()100%10%
get_OrganizationShort()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Organization\OrganizationInformation.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Organization
 6{
 7    /// <summary>
 8    /// The base model you will get by the MUNity API when requestiong an organization.
 9    /// </summary>
 10    public class OrganizationInformation
 11    {
 12        /// <summary>
 13        /// The id of the organization.
 14        /// </summary>
 015        public string OrganizationId { get; set; }
 16
 17        /// <summary>
 18        /// The name of the organization for example Deutsche Model United Nations e.V.
 19        /// </summary>
 020        public string OrganizationName { get; set; }
 21
 22        /// <summary>
 23        /// The short name of the organization for example DMUN e.V.
 24        /// </summary>
 025        public string OrganizationShort { get; set; }
 26    }
 27}