Initial DeepDrft Models Project
- Track Entity & DTO - Paging models
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user