12 lines
225 B
C#
12 lines
225 B
C#
|
using Persistence.Models.Enumerations;
|
|||
|
|
|||
|
namespace Persistence.Models.Configurations;
|
|||
|
|
|||
|
public class WitsInfo
|
|||
|
{
|
|||
|
public int RecordId { get; set; }
|
|||
|
|
|||
|
public int ItemId { get; set; }
|
|||
|
|
|||
|
public WitsType ValueType { get; set; }
|
|||
|
}
|