﻿namespace Stove.StoveSDK
{
    /**
     * View's bottom close button type.
     * @since 2.0.0
     */
    public enum BottomCloseButtonType
    {
        /**
         * Do not show.
         * @since 2.0.0
         */
        None = 0,

        /**
         * Image only.
         * @since 2.0.0
         */
        Image = 1,

        /**
         * Image and text.
         * @since 2.0.0
         */
        Text = 2,

        /**
         * Image and  SevenDays text.
         * @since 2.0.0
         */
        DoNotShowWeekText = 3
    }
}

