IW4M-Admin/Data/Models/EFAlias.cs

33 lines
906 B
C#
Raw Normal View History

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Data.Models
{
public partial class EFAlias : SharedEntity
{
[Key]
public int AliasId { get; set; }
[Required]
public int LinkId { get; set; }
[ForeignKey("LinkId")]
public virtual EFAliasLink Link { get; set; }
[Required]
[MaxLength(MAX_NAME_LENGTH)]
public string Name { get; set; }
[MaxLength(MAX_NAME_LENGTH)]
2019-08-02 19:04:34 -04:00
public string SearchableName { get; set; }
[Required]
public int? IPAddress { get; set; }
2022-04-04 15:27:22 -04:00
public string SearchableIPAddress { get; set; }
[Required]
public DateTime DateAdded { get; set; }
[NotMapped]
public const int MAX_NAME_LENGTH = 24;
[NotMapped]
public const int MIN_NAME_LENGTH = 3;
}
}