0b62cba52a
Stats plugin work Allow plugins to dynamically add EF classes to the context
17 lines
396 B
C#
17 lines
396 B
C#
|
|
using SharedLibrary.Database.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace StatsPlugin.Models
|
|
{
|
|
public class EFServer : SharedEntity
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int ServerId { get; set; }
|
|
[Required]
|
|
public int Port { get; set; }
|
|
}
|
|
}
|