You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. package io.github.norbipeti.gcdc.model;
  2. import discord4j.core.object.util.Snowflake;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Data;
  5. @Data
  6. @AllArgsConstructor
  7. public class Session {
  8. String token;
  9. Snowflake channel;
  10. long user;
  11. }