You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Container.SaversViewModel
|
|
{
|
|
public class Screensaver
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 屏保提示图标设置
|
|
/// </summary>
|
|
public int ScreenType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 屏保提示图标设置
|
|
/// </summary>
|
|
public string ScreenFile { get; set; }
|
|
|
|
/// <summary>
|
|
/// 效果 0、固定位置 1、自由运动
|
|
/// </summary>
|
|
public int ScreenEffect { get; set; }
|
|
|
|
/// <summary>
|
|
/// 播放类型 固定位置( 0、右下角 1、居中) 自由运动(0、左右移动 1、随机移动)
|
|
/// </summary>
|
|
public int EffectType { get; set; }
|
|
|
|
public int ScreenTime { get; set; }
|
|
|
|
}
|
|
|
|
public class Input_PlayRecordDetail
|
|
{
|
|
/// <summary>
|
|
/// 节目编码
|
|
/// </summary>
|
|
public string ProgramCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时长
|
|
/// </summary>
|
|
public int Time { get; set; }
|
|
|
|
/// <summary>
|
|
/// 播放日期
|
|
/// </summary>
|
|
public DateTime PlayTime { get; set; }
|
|
}
|
|
}
|
|
|