mirror of
https://github.com/sphildreth/roadie
synced 2024-11-14 00:17:12 +00:00
29 lines
No EOL
759 B
C#
29 lines
No EOL
759 B
C#
using Roadie.Library.Identity;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("userartist")]
|
|
public class UserArtist : EntityBase
|
|
{
|
|
public Artist Artist { get; set; }
|
|
|
|
[Column("artistId")] [Required] public int ArtistId { get; set; }
|
|
|
|
[Column("isDisliked")] public bool? IsDisliked { get; set; }
|
|
|
|
[Column("isFavorite")] public bool? IsFavorite { get; set; }
|
|
|
|
[Column("rating")] public short Rating { get; set; }
|
|
|
|
public ApplicationUser User { get; set; }
|
|
|
|
[Column("userId")] [Required] public int UserId { get; set; }
|
|
|
|
public UserArtist()
|
|
{
|
|
Rating = 0;
|
|
}
|
|
}
|
|
} |