718087309c
moved buildscripts to application added publish profile
17 lines
412 B
C#
17 lines
412 B
C#
|
|
using SharedLibraryCore.Database.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Models
|
|
{
|
|
public class EFServer : SharedEntity
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int ServerId { get; set; }
|
|
[Required]
|
|
public int Port { get; set; }
|
|
}
|
|
}
|