mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
17 lines
381 B
C#
17 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterLyrics.Core.Models
|
|
{
|
|
public record LyricsSearchResult(
|
|
string? Title,
|
|
string? Artist,
|
|
string? Album,
|
|
double? Duration,
|
|
string Raw,
|
|
string? Translation = null,
|
|
string? Transliteration = null,
|
|
string? Reference = null);
|
|
}
|