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.
25 lines
622 B
25 lines
622 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static Model.RunePage;
|
|
|
|
namespace EntityFrameworkLib
|
|
{
|
|
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; }
|
|
}
|
|
}
|