23 lines
461 B
C#
23 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts.Feature.AI
|
|
{
|
|
[DataContract]
|
|
public class AiViewContextDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public long? Primary { get; set; }
|
|
|
|
[DataMember]
|
|
public object Secondary { get; set; }
|
|
|
|
[DataMember]
|
|
public Dictionary<TableID, long[]> References { get; set; }
|
|
}
|
|
}
|