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,22 @@
package com.safemobile.lib;
public class HistCount {
public String seq_id;
public long count;
public HistCount()
{
}
public HistCount(String _seq_id, long _count)
{
seq_id = _seq_id;
count = _count;
}
public String toString()
{
return "seq_id: " + seq_id + " | count: " + count;
}
}