2024-12-06 11:40:18 +05:00
|
|
|
|
using Persistence.Models.Enumerations;
|
|
|
|
|
|
|
|
|
|
namespace Persistence.Models.Configurations;
|
|
|
|
|
|
2024-12-10 17:10:27 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Протокол Wits
|
|
|
|
|
/// </summary>
|
2024-12-06 11:40:18 +05:00
|
|
|
|
public class WitsInfo
|
|
|
|
|
{
|
|
|
|
|
public int RecordId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int ItemId { get; set; }
|
|
|
|
|
|
|
|
|
|
public WitsType ValueType { get; set; }
|
|
|
|
|
}
|