23 lines
473 B
C#
23 lines
473 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace LangGuan.Command.Model.EntityModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 视频
|
|||
|
|
/// </summary>
|
|||
|
|
public class Video : BaseModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 组名
|
|||
|
|
/// </summary>
|
|||
|
|
public string GroupName { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 视频源
|
|||
|
|
/// </summary>
|
|||
|
|
public List<string> Url { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|