2017-11-25 20:29:58 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.Database.Models
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2019-11-25 13:05:12 -05:00
|
|
|
|
public partial class EFAlias : SharedEntity
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int AliasId { get; set; }
|
|
|
|
|
[Required]
|
|
|
|
|
public int LinkId { get; set; }
|
|
|
|
|
[ForeignKey("LinkId")]
|
|
|
|
|
public virtual EFAliasLink Link { get; set; }
|
2018-02-10 23:33:42 -05:00
|
|
|
|
[Required]
|
2020-04-04 13:40:23 -04:00
|
|
|
|
[MaxLength(MAX_NAME_LENGTH)]
|
2017-11-25 20:29:58 -05:00
|
|
|
|
public string Name { get; set; }
|
2020-04-04 13:40:23 -04:00
|
|
|
|
[MaxLength(MAX_NAME_LENGTH)]
|
2019-08-02 19:04:34 -04:00
|
|
|
|
public string SearchableName { get; set; }
|
2018-04-10 02:38:18 -04:00
|
|
|
|
[Required]
|
2018-11-25 21:00:36 -05:00
|
|
|
|
public int? IPAddress { get; set; }
|
2017-11-25 20:29:58 -05:00
|
|
|
|
[Required]
|
|
|
|
|
public DateTime DateAdded { get; set; }
|
2020-04-04 13:40:23 -04:00
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public const int MAX_NAME_LENGTH = 24;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|