Promact/slack-erp-custom-integration-mvc

View on GitHub
Slack.Automation/Promact.Erp.DomainModel/ApplicationClass/EmployeeScrumDetails.cs

Summary

Maintainability
A
0 mins
Test Coverage

namespace Promact.Erp.DomainModel.ApplicationClass
{
    public class EmployeeScrumDetails
    {
        /// <summary>
        /// Name of the employee
        /// </summary>
        public string EmployeeName { get; set; }

        /// <summary>
        /// Answer to question what did you do yesterday
        /// </summary>
        public string[] Answer1 { get; set; }

        /// <summary>
        /// Answer to question what will you do today
        /// </summary>
        public string[] Answer2 { get; set; }

        /// <summary>
        /// Answer to question any roadblock
        /// </summary>
        public string[] Answer3 { get; set; }

        /// <summary>
        /// Status of the employee whether he is present or not
        /// </summary>
        public string Status { get; set; }

    }
}