Runt
2022-05-01 1c757c667d4d827cc0bcf692dae663f7ca49b01c
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
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;
    }
}