11 lines
301 B
C#
11 lines
301 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class Song
|
|
{
|
|
public int SongId { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Artist { get; set; }
|
|
public string? Url { get; set; }
|
|
public SongProvider? Provider { get; set; }
|
|
public string? SpotifyId { get; set; }
|
|
} |