mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
23 lines
No EOL
591 B
C#
23 lines
No EOL
591 B
C#
using Roadie.Library.Enums;
|
|
using Roadie.Library.Identity;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("bookmark")]
|
|
public partial class Bookmark : EntityBase
|
|
{
|
|
[Column("bookmarkTargetId")]
|
|
public int BookmarkTargetId { get; set; }
|
|
|
|
[Column("bookmarkType")]
|
|
public BookmarkType? BookmarkType { get; set; }
|
|
|
|
public ApplicationUser User { get; set; }
|
|
|
|
[Column("userId")]
|
|
[Required]
|
|
public int UserId { get; set; }
|
|
}
|
|
} |