19 lines
388 B
C#
19 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FrontendWorkerService.Models
|
|
{
|
|
public class ObixApiConfig
|
|
{
|
|
public string ApiBase { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
|
|
public class ObixAlarmConfig
|
|
{
|
|
public string Alarm_watch_id { get; set; }
|
|
}
|
|
}
|