mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
10 lines
274 B
C#
10 lines
274 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace PodNoms.Api.Models {
|
|
[Table("ServerConfig", Schema = "admin")]
|
|
public class ServerConfig : BaseEntity, IEntity {
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|