mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
huge commit for advanced stats feature.
broke data out into its own library. may be breaking changes with existing plugins
This commit is contained in:
31
Data/Models/EFAlias.cs
Normal file
31
Data/Models/EFAlias.cs
Normal file
@ -0,0 +1,31 @@
|
||||
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)]
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user