You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
498 B
21 lines
498 B
using Shared;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Entities
|
|
{
|
|
public class RunePageRuneEntity
|
|
{
|
|
public Category category { get; set; }
|
|
|
|
[ForeignKey("RuneName")]
|
|
public RuneEntity rune { get; set; }
|
|
public string RuneName { get; set; }
|
|
|
|
[ForeignKey("RunePageName")]
|
|
public RunePageEntity runepage { get; set; }
|
|
public string RunePageName { get; set; }
|
|
|
|
}
|
|
}
|