namespace CorePush.Apple
{
public class ApnSettings
{
///
/// p8 certificate string
///
public string P8PrivateKey { get; set; }
///
/// 10 digit p8 certificate id. Usually a part of a downloadable certificate filename
///
public string P8PrivateKeyId { get; set; }
///
/// Apple 10 digit team id
///
public string TeamId { get; set; }
///
/// App slug / bundle name
///
public string AppBundleIdentifier { get; set; }
///
/// Development or Production server
///
public ApnServerType ServerType { get; set; }
}
}