package com.example.tiksave.models.bulkdownloader;

import androidx.annotation.Keep;

@Keep
public class EdgeMediaToComment {
    int count;

    public int getCount() {
        return this.count;
    }

    public void setCount(int count) {
        this.count = count;
    }
}
