21 lines
441 B
C#
21 lines
441 B
C#
|
|
///
|
|||
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|||
|
|
///
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Workplace
|
|||
|
|
{
|
|||
|
|
public interface IDoubleCheckItem : ICheckItem
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 2nd part to be scanned / checked
|
|||
|
|
/// </summary>
|
|||
|
|
SharedDatabase.Entities.Part Part2 { get; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Scanned or obtained code of the 2nd part
|
|||
|
|
/// </summary>
|
|||
|
|
string ScannedCode2 { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|