Added functionality to save the stock cover art to a song if the song does not contain a cover art #50

This commit is contained in:
amazing-username
2019-07-14 22:40:49 -04:00
parent 59895af3b4
commit e4be56101a
7 changed files with 78 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using System.IO;
namespace Icarus.Constants
{
public class DirectoryPaths
{
public static string CoverArtPath =>
Directory.GetCurrentDirectory() + "/Images/Stock/CoverArt.png";
}
}