18 lines
399 B
C#
18 lines
399 B
C#
|
namespace Repository.Models
|
|||
|
{
|
|||
|
public class BackEndConfig
|
|||
|
{
|
|||
|
public NiagaraDataSyncConfig NiagaraDataSyncConfig { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class NiagaraDataSyncConfig
|
|||
|
{
|
|||
|
public string UrlSlot { get; set; }
|
|||
|
public string ObixQuery { get; set; }
|
|||
|
public string ObixHisBqlQuery { get; set; }
|
|||
|
public string ObixHisUrlQuery { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|