package com.lemoulinstudio.bikefriend.drawer;
public class DrawerListSection {
public final int iconId;
public final int nameId;
public DrawerListSection(int iconId, int nameId) {
this.iconId = iconId;
this.nameId = nameId;
}
}