< Summary

Class:SVETA.Api.Data.DTO.Notification.NotificationPatchRequestDTO
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Notification/NotificationPatchRequestDTO.cs
Covered lines:0
Uncovered lines:1
Coverable lines:1
Total lines:16
Line coverage:0% (0 of 1)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_NotificationsStatus()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Notification/NotificationPatchRequestDTO.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2using SVETA.Api.Validation;
 3
 4namespace SVETA.Api.Data.DTO.Notification
 5{
 6    public class NotificationPatchRequestDTO
 7    {
 8        /// <summary>
 9        /// Статус коммуникации (Неизвестно- 1,Создано- 2,Отправлено- 3,Прочитано- 4,Отключено- 5)
 10        /// </summary>
 11        [DigitValidate(CanBeZero = false, CanBeNegative = true)]
 12        [Display(Name = "Идентификатор статуса уведомления")]
 013        public int NotificationsStatus { get; set; } = 1;
 14
 15    }
 16}

Methods/Properties

get_NotificationsStatus()