14 lines
421 B
C#
14 lines
421 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class SongSuggestion
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
public User? User { get; set; }
|
|
public Song? Song { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public bool UserHasSubmitted { get; set; }
|
|
public required SuggestionHelper SuggestionHelper { get; set; }
|
|
public bool HasUsedSuggestion { get; set; }
|
|
} |