fixes and renaming

This commit is contained in:
Paul Schneider 2026-06-30 23:32:05 +01:00
commit 0965caaf40
8 changed files with 29 additions and 28 deletions

View file

@ -0,0 +1,15 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Musical.Profiles
{
public class MusicLoverSettings : IUserSettings
{
public virtual List<MusicalPreference> SoundColor { get; set; }
[Key]
public string UserId
{
get; set;
}
}
}