/*
 * Copyright 2019 LinkedIn Corporation
 * All Rights Reserved.
 *
 * Licensed under the BSD 2-Clause License (the "License").  See License in the project root for
 * license information.
 */
package com.reactnativecompressor.Data;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.util.ArrayList;
import java.util.List;

public class TrimConfig {


    public boolean enabled;
    public List<Float> range = new ArrayList<>(2);

    public TrimConfig() {
        range.add(0f);
        range.add(1f);
    }
}
