1st version that works
This commit is contained in:
@ -0,0 +1,26 @@
|
||||
package com.safemobile.lib.radio;
|
||||
|
||||
public class Channel {
|
||||
|
||||
public int dbID;
|
||||
public int id;
|
||||
public String chName;
|
||||
|
||||
public Channel()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Channel(int dbId, int id, String chName) {
|
||||
this.dbID = dbId;
|
||||
this.id = id;
|
||||
this.chName = chName;
|
||||
}
|
||||
|
||||
public String toString()
|
||||
{
|
||||
return "dbID: " + dbID + " | id: " + id + " | chName: " + chName ;
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user