< Summary

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

Metrics

MethodLine coverage Branch coverage
get_Notification()100%100%
get_User()100%100%
get_NotificationsStatus()100%100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4using System.ComponentModel.DataAnnotations;
 5
 6namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 7{
 8    public class NotificationUsers : ExternalRecord, ITrackableRecord
 9    {
 10        [Required]
 11        /// <summary>
 12        /// Коммуникация
 13        /// </summary>
 149014        public Notification Notification { get; set; }
 15
 16        /// <summary>
 17        /// Пользователи
 18        /// </summary>
 149019        public User User { get; set; }
 20
 21        /// <summary>
 22        /// Статус
 23        /// </summary>
 149024        public NotificationsStatus NotificationsStatus { get; set; }
 25
 26    }
 27}