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