using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model.EntityModel
{
///
/// 视频
///
public class Video : BaseModel
{
///
/// 组名
///
public string GroupName { get; set; }
///
/// 视频源
///
public List Url { get; set; }
}
}