package com.anren.omplayer;

public class OMPlayerRate {
    public int index;
    public String name;
    public float rate;

    public OMPlayerRate(int index, String name, float rate) {
        this.index = index;
        this.name = name;
        this.rate = rate;
    }
}
