1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 14:18:20 -05:00
2019-08-02 18:04:34 -05:00

26 lines
696 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace SharedLibraryCore.Database.Models
{
public partial class EFAlias
{
[Key]
public int AliasId { get; set; }
[Required]
public int LinkId { get; set; }
[ForeignKey("LinkId")]
public virtual EFAliasLink Link { get; set; }
[Required]
[MaxLength(24)]
public string Name { get; set; }
[MaxLength(24)]
public string SearchableName { get; set; }
[Required]
public int? IPAddress { get; set; }
[Required]
public DateTime DateAdded { get; set; }
}
}