IW4M-Admin/SharedLibraryCore/Database/Models/EFAlias.cs

32 lines
872 B
C#
Raw Normal View History

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2018-04-08 02:44:42 -04:00
namespace SharedLibraryCore.Database.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; }
[Required]
public DateTime DateAdded { get; set; }
[NotMapped]
public const int MAX_NAME_LENGTH = 24;
[NotMapped]
public const int MIN_NAME_LENGTH = 3;
}
}