using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using SPC.Kiosk.Common; namespace SPC.Kiosk.Popup.Model { /// /// 단골 매장 컨트롤용 모델 /// public class M_StoreAgree { /// /// 단골 매장 유무 /// public bool IsFavoriteStore { get; set; } = false; /// /// 표시언어 /// public SupportLanguageType DisplayLanguage { get; set; } /// /// 제목 /// public List Header { get; set; } /// /// 배경 이미지 /// public string BackgroundImage { get; set; } /// /// 점포 이미지 /// public string StoreImage { get; set; } /// /// 점포명 /// public string StoreName { get; set; } /// /// 등록 첫번째 안내 /// public List FirstInfoText { get; set; } /// /// 등록 두번째 안내 /// public List SecondInfoText { get; set; } /// /// 환영 안내 /// public List WelcomeInfoText { get; set; } /// /// Button Normal Brush /// public string ButtonNormalBrush { get; set; } /// /// Button SwitchOn Brush /// public string ButtonSwitchOnBrush { get; set; } /// /// Button Text /// public List ButtonText { get; set; } } }