< Summary

Class:MUNityCore.Dtos.Simulations.SimulationUserInfoDto
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Dtos\Simulations\SimulationUserInfoDto.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:24
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:6
Method coverage:0% (0 of 6)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationUserId()100%10%
get_DisplayName()100%10%
get_RoleName()100%10%
get_RoleIso()100%10%
get_RoleType()100%10%
get_IsOnline()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Dtos\Simulations\SimulationUserInfoDto.cs

#LineLine coverage
 1using MUNity.Base;
 2using MUNity.Schema.Simulation;
 3using System;
 4using System.Collections.Generic;
 5using System.Linq;
 6using System.Threading.Tasks;
 7
 8namespace MUNityCore.Dtos.Simulations
 9{
 10    public class SimulationUserInfoDto
 11    {
 012        public int SimulationUserId { get; set; }
 13
 014        public string DisplayName { get; set; }
 15
 016        public string RoleName { get; set; }
 17
 018        public string RoleIso { get; set; }
 19
 020        public RoleTypes RoleType { get; set; }
 21
 022        public bool IsOnline { get; set; }
 23    }
 24}