mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 06:50:41 +00:00
18 lines
431 B
C#
18 lines
431 B
C#
namespace ZonyLrcTools.Cli.Infrastructure.Lyric
|
|
{
|
|
public class LyricDownloaderArgs
|
|
{
|
|
public string SongName { get; set; }
|
|
|
|
public string Artist { get; set; }
|
|
|
|
public long Duration { get; set; }
|
|
|
|
public LyricDownloaderArgs(string songName, string artist, long duration)
|
|
{
|
|
SongName = songName;
|
|
Artist = artist;
|
|
Duration = duration;
|
|
}
|
|
}
|
|
} |