using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Container.SaversViewModel { public class Screensaver { /// /// 屏保提示图标设置 /// public int ScreenType { get; set; } /// /// 屏保提示图标设置 /// public string ScreenFile { get; set; } /// /// 效果 0、固定位置 1、自由运动 /// public int ScreenEffect { get; set; } /// /// 播放类型 固定位置( 0、右下角 1、居中) 自由运动(0、左右移动 1、随机移动) /// public int EffectType { get; set; } public int ScreenTime { get; set; } } public class Input_PlayRecordDetail { /// /// 节目编码 /// public string ProgramCode { get; set; } /// /// 时长 /// public int Time { get; set; } /// /// 播放日期 /// public DateTime PlayTime { get; set; } } }