Promact/slack-erp-custom-integration-mvc

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

Summary

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

namespace Promact.Erp.DomainModel.ApplicationClass.Redmine
{
    public class RedmineUserResponse
    {
        [JsonProperty("memberships")]
        public List<RedmineUser> Members { get; set; }
    }
}