< Summary

Class:MUNity.Schema.Conference.ChangeConferenceDate
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Conference\ChangeConferenceDate.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:30
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:3
Method coverage:0% (0 of 3)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_ConferenceId()100%10%
get_StartDate()100%10%
get_EndDate()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Schema\Conference\ChangeConferenceDate.cs

#LineLine coverage
 1using System;
 2using System.ComponentModel.DataAnnotations;
 3
 4namespace MUNity.Schema.Conference
 5{
 6    /// <summary>
 7    /// a request body to change the date when a conference will take place.
 8    /// </summary>
 9    public class ChangeConferenceDate
 10    {
 11        /// <summary>
 12        /// the id of the conference you want to change the date of
 13        /// </summary>
 14        [Required]
 15        [MaxLength(80)]
 016        public string ConferenceId { get; set; }
 17
 18        /// <summary>
 19        /// the new start Date.
 20        /// </summary>
 21        [Required]
 022        public DateTime StartDate { get; set; }
 23
 24        /// <summary>
 25        /// The new end date.
 26        /// </summary>
 27        [Required]
 028        public DateTime EndDate { get; set; }
 29    }
 30}