﻿using System;

namespace Yodo1.FanCraft
{
    [Serializable]
    public class PushNotificationSettingsAndroid : PushNotificationSettings
    {
        public string google_app_id;
        public string google_api_key;
        public string project_id;

        public PushNotificationSettingsAndroid()
        {
            this.google_app_id = null;
            this.google_api_key = null;
            this.project_id = null;
        }
    }
}