12 lines
347 B
C#
12 lines
347 B
C#
namespace Models.Model.Backend;
|
|
|
|
public class ScannerResumeObject
|
|
{
|
|
public int StartRange { get; set; }
|
|
public int EndRange { get; set; }
|
|
public int FirstByte { get; set; }
|
|
public int SecondByte { get; set; }
|
|
public int ThirdByte { get; set; }
|
|
public int FourthByte { get; set; }
|
|
public int ThreadNumber { get; set; }
|
|
} |