Runt
2022-05-29 e407dd1f335aa9c716b89b3152bf363b898d28fa
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;
    }
}