12 lines
202 B
C#
12 lines
202 B
C#
namespace Shared.Models.Base
|
|
{
|
|
public class ApnConf
|
|
{
|
|
public string host { get; set; }
|
|
|
|
public string secure { get; set; }
|
|
|
|
public string secret { get; set; }
|
|
}
|
|
}
|