package com.cvte.tv.api.aidl;

import android.os.Parcel;
import android.os.Parcelable;

/* JADX INFO: loaded from: classes.dex */
public class EntityLcnV2ChannelListDescription implements Parcelable {
    public static final Parcelable.Creator<EntityLcnV2ChannelListDescription> CREATOR = new Parcelable.Creator<EntityLcnV2ChannelListDescription>() { // from class: com.cvte.tv.api.aidl.EntityLcnV2ChannelListDescription.1
        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public EntityLcnV2ChannelListDescription createFromParcel(Parcel parcel) {
            return new EntityLcnV2ChannelListDescription(parcel);
        }

        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public EntityLcnV2ChannelListDescription[] newArray(int i) {
            return new EntityLcnV2ChannelListDescription[i];
        }
    };
    public int channelListId;
    public String channelListName;
    public String countryCode;

    @Override // android.os.Parcelable
    public int describeContents() {
        return 0;
    }

    public EntityLcnV2ChannelListDescription() {
    }

    protected EntityLcnV2ChannelListDescription(Parcel parcel) {
        this.channelListId = parcel.readInt();
        this.channelListName = parcel.readString();
        this.countryCode = parcel.readString();
    }

    @Override // android.os.Parcelable
    public void writeToParcel(Parcel parcel, int i) {
        parcel.writeInt(this.channelListId);
        parcel.writeString(this.channelListName);
        parcel.writeString(this.countryCode);
    }
}
