2017-11-25 20:29:58 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.Models
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
public class EFAliasLink : SharedEntity
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int AliasLinkId { get; set; }
|
|
|
|
|
public virtual ICollection<EFAlias> Children { get; set; }
|
2017-11-29 19:35:50 -05:00
|
|
|
|
public virtual ICollection<EFPenalty> ReceivedPenalties { get; set; }
|
2017-11-25 20:29:58 -05:00
|
|
|
|
|
|
|
|
|
public EFAliasLink()
|
|
|
|
|
{
|
|
|
|
|
Children = new List<EFAlias>();
|
2017-11-29 19:35:50 -05:00
|
|
|
|
ReceivedPenalties = new List<EFPenalty>();
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|