c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
20 lines
518 B
C#
20 lines
518 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Data.Models
|
|
{
|
|
public class EFAliasLink : SharedEntity
|
|
{
|
|
[Key]
|
|
public int AliasLinkId { get; set; }
|
|
public virtual ICollection<EFAlias> Children { get; set; }
|
|
public virtual ICollection<EFPenalty> ReceivedPenalties { get; set; }
|
|
|
|
public EFAliasLink()
|
|
{
|
|
Children = new List<EFAlias>();
|
|
ReceivedPenalties = new List<EFPenalty>();
|
|
}
|
|
}
|
|
}
|