Battle-Cattle/BCUK-Bot-3

View on GitHub
src/main/java/com/expiredminotaur/bcukbot/rest/JoinRequest.java

Summary

Maintainability
A
40 mins
Test Coverage
package com.expiredminotaur.bcukbot.rest;

public class JoinRequest
{
    Long channelId;

    public JoinRequest()
    {
    }

    public JoinRequest(Long channelId)
    {
        this.channelId = channelId;
    }

    public Long getChannelId()
    {
        return channelId;
    }

    public void setChannelId(Long channelId)
    {
        this.channelId = channelId;
    }
}