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