package com.seewo.sdk.model;

import com.seewo.sdk.internal.model.SDKParsable;

/* JADX INFO: loaded from: classes.dex */
public class SDKSystemTime implements SDKParsable {
    public int hourOfDay;
    public int mDay;
    public int mMonth;
    public int mYear;
    public int minuteOfDay;
    public int secondOfDay;

    public SDKSystemTime(int i2, int i3, int i4, int i5, int i6) {
        this.mYear = i2;
        this.mMonth = i3;
        this.mDay = i4;
        this.hourOfDay = i5;
        this.minuteOfDay = i6;
        this.secondOfDay = 0;
    }

    public SDKSystemTime(int i2, int i3, int i4, int i5, int i6, int i7) {
        this.mYear = i2;
        this.mMonth = i3;
        this.mDay = i4;
        this.hourOfDay = i5;
        this.minuteOfDay = i6;
        this.secondOfDay = i7;
    }
}
