Runt
2022-05-04 57fe689f1862ad0fda96b2e9eb054be6a7c9425d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.auto.lyric.widgets;
 
/**
 * Created by Runt (qingingrunt2010@qq.com) on 2022/4/30.
 */
public class Sentence {
    private String name;
    private int index;
 
    public Sentence(int index,String name){
        this.name=name;
        this.index=index;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public int getIndex() {
        return index;
    }
 
    public void setIndex(int index) {
        this.index = index;
    }
}