Move AcceptedTimeFormats to class level variable

This commit is contained in:
1hitsong
2022-09-19 16:59:16 -04:00
parent d7fedf3512
commit 5d2364f064
2 changed files with 7 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Lyrics;
@@ -15,5 +16,5 @@ public class LyricResponse
/// <summary>
/// Gets or sets Lyrics.
/// </summary>
public IReadOnlyList<LyricLine> Lyrics { get; set; } = new List<LyricLine>();
public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>();
}