< Summary

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

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_SimulationUserId()100%10%
get_DisplayName()100%10%
get_RoleId()100%10%
get_IsOnline()100%10%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Simulation
 6{
 7    /// <summary>
 8    /// The user of a simulation.
 9    /// </summary>
 10    public class SimulationUserDefaultDto : IUserItem
 11    {
 12        /// <summary>
 13        /// The simulation user Id.
 14        /// </summary>
 015        public int SimulationUserId { get; set; }
 16
 17        /// <summary>
 18        /// The display name of the user.
 19        /// </summary>
 020        public string DisplayName { get; set; }
 21
 22        /// <summary>
 23        /// The current role this user has picked.
 24        /// </summary>
 025        public int RoleId { get; set; }
 26
 27        /// <summary>
 28        /// Returns of the user is connected or not. This is known if there is an active Hub Connection.
 29        /// </summary>
 030        public bool IsOnline { get; set; }
 31    }
 32}