13 lines
410 B
C#
13 lines
410 B
C#
namespace DeepDrftModels.DTOs;
|
|
|
|
public class TrackDto
|
|
{
|
|
public long Id { get; set; }
|
|
public required string EntryKey { get; set; }
|
|
public required string TrackName { get; set; }
|
|
public required string Artist { get; set; }
|
|
public string? Album { get; set; }
|
|
public string? Genre { get; set; }
|
|
public DateOnly? ReleaseDate { get; set; }
|
|
public string? ImagePath { get; set; }
|
|
} |