jy-plc/Command/Model/EntityModel/Video.cs

23 lines
473 B
C#
Raw Normal View History

2024-07-24 13:30:21 +00:00
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; }
}
}