14 lines
342 B
C#
14 lines
342 B
C#
using System.ComponentModel;
|
|
using TechTitans.Enums;
|
|
using TechTitans.Models;
|
|
|
|
namespace TechTitans.ViewModels
|
|
{
|
|
class ArtistSongDashboardViewModel
|
|
{
|
|
public SongBasicInfo SongInfo { get; set; }
|
|
public AuthorDetails ArtistInfo { get; set; }
|
|
public SongRecommendationDetails SongDetails { get; set; }
|
|
}
|
|
}
|