mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
21 lines
544 B
C#
21 lines
544 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Models
|
|
{
|
|
public class TrimmedTrack
|
|
{
|
|
public string Title { get; set; }
|
|
public string Artist { get; set; }
|
|
public string Album { get; set; }
|
|
public int? Year { get; set; }
|
|
public string Genre { get; set; }
|
|
public string FilePath { get; set; }
|
|
public int Duration { get; set; }
|
|
public byte[]? AlbumArt { get; set; }
|
|
}
|
|
}
|