< Summary

Class:MUNity.Schema.Simulation.PetitionTypeSimulationDto
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\Petition\PetitionTypeSimulationDto.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:51
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:11
Method coverage:0% (0 of 11)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PetitionTypeId()100%10%
get_Name()100%10%
get_Description()100%10%
get_OrderIndex()100%10%
get_Reference()100%10%
get_Ruling()100%10%
get_Category()100%10%
get_AllowChairs()100%10%
get_AllowDelegates()100%10%
get_AllowNgo()100%10%
get_AllowSpectator()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\Petition\PetitionTypeSimulationDto.cs

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5
 6namespace MUNity.Schema.Simulation
 7{
 8    public class PetitionTypeSimulationDto
 9    {
 10        /// <summary>
 11        /// The identifier of the Petition type.
 12        /// </summary>
 013        public int PetitionTypeId { get; set; }
 14
 15        /// <summary>
 16        /// A Name to Display this petition. For example: Right of information.
 17        /// </summary>
 018        public string Name { get; set; }
 19
 20        /// <summary>
 21        /// More information to give about this petition type
 22        /// </summary>
 023        public string Description { get; set; }
 24
 025        public int OrderIndex { get; set; }
 26
 27        /// <summary>
 28        /// A Reference to where you get more information about this petition. This could be a link or
 29        /// a name of the paragraph insiide the rules of procedure.
 30        /// </summary>
 031        public string Reference { get; set; }
 32
 33        /// <summary>
 34        /// How do you get to vote on this Petitiontype
 35        /// </summary>
 036        public PetitionRulings Ruling { get; set; }
 37
 38        /// <summary>
 39        /// A category for the petitiontype
 40        /// </summary>
 041        public string Category { get; set; }
 42
 043        public bool AllowChairs { get; set; }
 44
 045        public bool AllowDelegates { get; set; }
 46
 047        public bool AllowNgo { get; set; }
 48
 049        public bool AllowSpectator { get; set; }
 50    }
 51}