8 lines
150 B
C#
8 lines
150 B
C#
namespace PlaylistShared.Shared.DTO;
|
|
|
|
public class TrackInfoDto
|
|
{
|
|
public string Title { get; set; }
|
|
public string CoverUri { get; set; }
|
|
}
|