2018-05-23 12:12:20 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
using BS.Shared.Core;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BS.Shared.DataContracts
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataContract]
|
|
|
|
|
|
[KnownType(typeof(DateTimeSpan))]
|
|
|
|
|
|
public class QueryParamDC : IDataContract
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public QueryParameterType ParamType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public object Value { get; set; }
|
2018-05-23 12:12:20 +02:00
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public IList<String> CustomValues { get; set; }
|
2024-08-02 12:11:53 +02:00
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public long? QueryParameterOid { get; set; }
|
2025-02-26 00:24:17 +01:00
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public string DefaultValue { get; set; }
|
|
|
|
|
|
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|