< Summary

Class:WinSolutions.Sveta.Server.Data.DataModel.Entities.JobLogger
Assembly:WinSolutions.Sveta.Server
File(s):/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/JobLogger.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:9
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_JobName()0%100%
get_LogLevel()0%100%
get_Log()0%100%

File(s)

/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/JobLogger.cs

#LineLine coverage
 1namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 2{
 3    public class JobLogger: ExternalRecord
 4    {
 05        public string JobName { get; set; }
 06        public string LogLevel { get; set; }
 07        public string Log { get; set; }
 8    }
 9}