package xyz.stream.api.entity;

import java.util.List;

/* JADX INFO: loaded from: classes3.dex */
public class ScratchEntity {
    private List<ScratchFileEntity> files;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    private int f35860id;
    private String name;
    private String path;

    public ScratchEntity(int i10, String str, String str2, List<ScratchFileEntity> list) {
        this.f35860id = i10;
        this.name = str;
        this.path = str2;
        this.files = list;
    }

    public List<ScratchFileEntity> getFiles() {
        return this.files;
    }

    public int getId() {
        return this.f35860id;
    }

    public String getName() {
        return this.name;
    }

    public String getPath() {
        return this.path;
    }

    public void setFiles(List<ScratchFileEntity> list) {
        this.files = list;
    }

    public void setId(int i10) {
        this.f35860id = i10;
    }

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

    public void setPath(String str) {
        this.path = str;
    }
}
