mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-02 05:10:42 +00:00
15 lines
339 B
C#
15 lines
339 B
C#
namespace ZonyLrcTools.Cli.Infrastructure.Lyric
|
|
{
|
|
public class LyricDownloaderArgs
|
|
{
|
|
public string SongName { get; set; }
|
|
|
|
public string Artist { get; set; }
|
|
|
|
public LyricDownloaderArgs(string songName, string artist)
|
|
{
|
|
SongName = songName;
|
|
Artist = artist;
|
|
}
|
|
}
|
|
} |