All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.belerweb.social.qq.mail.bean.Group Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.belerweb.social.qq.mail.bean;

import java.util.List;

public class Group {

  private String id;
  private String type;
  private String name;
  private List users;
  private String owner;

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public List getUsers() {
    return users;
  }

  public void setUsers(List users) {
    this.users = users;
  }

  public String getOwner() {
    return owner;
  }

  public void setOwner(String owner) {
    this.owner = owner;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy