Чистка кода

This commit is contained in:
FrigaT
2026-04-14 01:05:06 +03:00
parent 5717b1ec0c
commit 40ea9166d2
29 changed files with 48 additions and 34 deletions

View File

@@ -0,0 +1,10 @@
using PlaylistShared.Shared.DTO;
namespace PlaylistShared.Shared.Shared;
public class YandexPlaylistData
{
public string Title { get; set; } = "";
public string Description { get; set; } = "";
public List<YandexTrack> Tracks { get; set; } = new();
}