Files
BetterLyrics/BetterLyrics.WinUI3/BetterLyrics.WinUI3/Models/TrimmedTrack.cs
Zhe Fang 34bdbc89bc fix #50
2025-07-20 23:28:37 -04:00

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; }
}
}