video/SelectionConfig .cs

21 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace videoGather
{
public class SelectionConfig
{
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
// 添加时间戳用于校验
public DateTime LastModified { get; set; } = DateTime.Now;
}
}