persistence/Persistence/Models/Configurations/WitsInfo.cs

15 lines
280 B
C#
Raw Normal View History

using Persistence.Models.Enumerations;
namespace Persistence.Models.Configurations;
/// <summary>
/// Протокол Wits
/// </summary>
public class WitsInfo
{
public int RecordId { get; set; }
public int ItemId { get; set; }
public WitsType ValueType { get; set; }
}