26 lines
437 B
Java
26 lines
437 B
Java
package com.ubt.jimu.blockly.feature.course;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Rule {
|
|
private String id;
|
|
private List<String> name;
|
|
|
|
public Rule() {
|
|
}
|
|
|
|
public String getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public List<String> getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public Rule(String str, List<String> list) {
|
|
this.id = str;
|
|
this.name = list;
|
|
}
|
|
}
|