Initial DeepDrft Models Project

- Track Entity & DTO
 - Paging models
This commit is contained in:
2025-08-30 21:43:15 -04:00
parent c86632e979
commit aac0004e03
5 changed files with 99 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace DeepDrftModels.DTOs;
public class TrackDto
{
public long Id { get; set; }
public string MediaPath { get; set; }
public string TrackName { get; set; }
public string Artist { get; set; }
public string? Album { get; set; }
public string? Genre { get; set; }
public DateOnly? ReleaseDate { get; set; }
public string? ImagePath { get; set; }
}