Switched to the TagLib library for stripping metadata. Included TODO for updating a song's metadata for both the database and the tag of the MP3 file #36

This commit is contained in:
amazing-username
2019-04-30 01:49:43 +00:00
parent 4d1013950a
commit c0d2891d86
5 changed files with 95 additions and 18 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using Newtonsoft.Json;
namespace Icarus.Models
{
public class SongResult
{
[JsonProperty("message")]
public string Message { get; set; }
[JsonProperty("song_title")]
public string SongTitle { get; set; }
}
}