1st version that works

This commit is contained in:
2022-03-14 11:53:00 +02:00
parent ee2884b2ff
commit 3806d2c80d
617 changed files with 17293 additions and 4470 deletions

View File

@ -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 ;
}
}