11 lines
341 B
C#
11 lines
341 B
C#
namespace TechMedia.Core.Model;
|
|
|
|
public class Track
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Album { get; set; }
|
|
public string? AlbumArt { get; set; }
|
|
public long Duration { get; set; }
|
|
public string Filename { get; set; } = "";
|
|
public override string ToString() => $"{Title ?? "?"} - {Album ?? "?"}";
|
|
} |