You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
461 B
C#
17 lines
461 B
C#
using System;
|
|
|
|
namespace SlnMesnac.Model.dto
|
|
{
|
|
public class TagInfo
|
|
{
|
|
public byte[] PC = new byte[2];
|
|
public int Count { get; set; }
|
|
public int RSSI{ get; set; }
|
|
public int Antana{ get; set; }
|
|
public byte[] EPC{ get; set; }
|
|
public byte[] Data{ get; set; }
|
|
public string PCstring = (string) null;
|
|
public string EPCstring = (string) null;
|
|
public DateTime Time{ get; set; }
|
|
}
|
|
} |