Promact/slack-erp-custom-integration-mvc

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

Summary

Maintainability
A
0 mins
Test Coverage
using Newtonsoft.Json;
using System.Collections.Generic;

namespace Promact.Erp.DomainModel.ApplicationClass.Redmine
{
    public class GetRedmineProjectsResponse : GetRedmineBaseApplicationClass
    {
        [JsonProperty("projects")]
        public List<RedmineProject> Projects { get; set; }
    }
}