roadie/Roadie.Api.Library/Data/CommentReaction.cs
2019-06-28 16:24:32 -05:00

39 lines
No EOL
969 B
C#

using Roadie.Library.Enums;
using Roadie.Library.Identity;
using Roadie.Library.Utility;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Data
{
[Table("commentReaction")]
public partial class CommentReaction : EntityBase
{
public Comment Comment { get; set; }
public ApplicationUser User { get; set; }
[Column("commentId")]
[Required]
public int CommentId { get; set; }
[Column("userId")]
[Required]
public int UserId { get; set; }
[NotMapped]
public new bool? IsLocked { get; set; }
[Column("reaction")]
public string Reaction { get; set; }
[NotMapped]
public Enums.CommentReaction ReactionValue
{
get
{
return SafeParser.ToEnum<Enums.CommentReaction>(this.Reaction ?? "Unknown");
}
}
}
}