mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
14 lines
344 B
C#
14 lines
344 B
C#
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace BililiveRecorder.Flv.Xml
|
|
{
|
|
[XmlRoot("BililiveRecorderFlv")]
|
|
public class XmlFlvFile
|
|
{
|
|
public static XmlSerializer Serializer { get; } = new XmlSerializer(typeof(XmlFlvFile));
|
|
|
|
public List<Tag> Tags { get; set; } = new List<Tag>();
|
|
}
|
|
}
|