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

be.lukin.poeditor.models.Contributor Maven / Gradle / Ivy

package be.lukin.poeditor.models;

import java.util.List;

public class Contributor {
    public static class Project{
        public String id;
        public String name;
        public String type;

        @Override
        public String toString() {
            return "Project{" +
                    "id='" + id + '\'' +
                    ", name='" + name + '\'' +
                    ", type='" + type + '\'' +
                    '}';
        }
    }
    
    public String name;
    public String email;
    public List projects;

    @Override
    public String toString() {
        return "Contributor{" +
                "name='" + name + '\'' +
                ", email='" + email + '\'' +
                ", projects=" + projects +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy