< Summary

Class:MUNity.Schema.User.UserAuthSchema
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\User\UserAuthSchema.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:35
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_UserAuthId()100%10%
get_UserAuthName()100%10%
get_CanCreateOrganization()100%10%
get_AuthLevel()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\User\UserAuthSchema.cs

#LineLine coverage
 1using MUNity.Base;
 2using System;
 3using System.Collections.Generic;
 4using System.Text;
 5
 6namespace MUNity.Schema.User
 7{
 8    /// <summary>
 9    /// The auth Schema of a MUNity User.
 10    /// </summary>
 11    public class UserAuthSchema
 12    {
 13
 14
 15        /// <summary>
 16        /// The AuthId
 17        /// </summary>
 018        public int UserAuthId { get; set; }
 19
 20        /// <summary>
 21        /// The name of the auth.
 22        /// </summary>
 023        public string UserAuthName { get; set; }
 24
 25        /// <summary>
 26        /// Can this user Auth create an Organization.
 27        /// </summary>
 028        public bool CanCreateOrganization { get; set; }
 29
 30        /// <summary>
 31        /// The auth level.
 32        /// </summary>
 033        public EAuthLevel AuthLevel { get; set; }
 34    }
 35}