Files
deepdrft/DeepDrftModels/Entities/TrackEntity.cs
T
2025-09-04 19:58:00 -04:00

13 lines
417 B
C#

namespace DeepDrftModels.Entities;
public class TrackEntity
{
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; }
}