﻿namespace Yodo1.FanCraft
{
    using System;
    using System.Collections.Generic;

    [Serializable]
    public class PushNotificationSettings
    {
        public bool Enable;// { get; set; }
        public string DeviceToken { get; set; }

        public PushNotificationSettings()
        {
            Enable = false;
            DeviceToken = "";
        }

        public Dictionary<string, object> ToDictionary()
        {
            Dictionary<string, object> dict = new Dictionary<string, object>();
            dict.Add("enable", Enable);
            dict.Add("device_token", DeviceToken);
            return dict;
        }
    }
}