27 lines
764 B
C#
27 lines
764 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml;
|
|
using UCS.ConfigFile.Attributes;
|
|
|
|
namespace UCS.ConfigFile
|
|
{
|
|
public class VOIPConfigFile
|
|
{
|
|
[ConfigRow(1)]
|
|
public Boolean VOIPEnable { get; set; }
|
|
[ConfigRow(2)]
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
[ConfigRow(3)]
|
|
public string UserName { get; set; } = string.Empty;
|
|
[ConfigRow(4)]
|
|
public string Domain { get; set; } = string.Empty;
|
|
[ConfigRow(5)]
|
|
public string RegisterName { get; set; } = string.Empty;
|
|
[ConfigRow(6)]
|
|
public string RegisterPassword { get; set; } = string.Empty;
|
|
}
|
|
} |