-
Notifications
You must be signed in to change notification settings - Fork 0
/
TagContainer.cs
29 lines (29 loc) · 1017 Bytes
/
TagContainer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace MetadataChange
{
/// <summary>
/// The container of all the selected files
/// </summary>
/// <param name="_tag">The TagLib.File of the selected resource</param>
/// <param name="_stream">The MemoryStream of the selected file</param>
/// <param name="_name">The file name</param>
/// <param name="_id">An unique identifier of the container</param>
public class TagInfoContainer(TagLib.File _tag, MemoryStream _stream, string _name, string _id)
{
/// <summary>
/// The TagLib.File of the selected resource
/// </summary>
public TagLib.File tag = _tag;
/// <summary>
/// The MemoryStream of the selected file
/// </summary>
public MemoryStream memoryStream = _stream;
/// <summary>
/// The file name
/// </summary>
public string file = _name;
/// <summary>
/// An unique identifier of the container
/// </summary>
public string id = _id;
}
}