< Summary

Class:MUNity.Schema.Simulation.AgendaItemDto
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Simulation\AgendaItemDto.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:21
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_AgendaItemId()100%10%
get_Name()100%10%
get_Description()100%10%
get_Status()100%10%
get_Petitions()100%10%

File(s)

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

#LineLine coverage
 1using MUNity.Base;
 2using MUNity.Models.Simulation;
 3using System;
 4using System.Collections.Generic;
 5using System.Text;
 6
 7namespace MUNity.Schema.Simulation
 8{
 9    public class AgendaItemDto
 10    {
 011        public int AgendaItemId { get; set; }
 12
 013        public string Name { get; set; }
 14
 015        public string Description { get; set; }
 16
 017        public EAgendaItemStatuses Status { get; set; }
 18
 019        public List<PetitionDto> Petitions { get; set; }
 20    }
 21}