You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-17 22:34:48 +02:00
7 lines
216 B
C#
7 lines
216 B
C#
|
|
namespace OneSwiss.Server.Models;
|
||
|
|
|
||
|
|
public class ConfigurationRepositoryMiddlewareArgument : DatabaseObject
|
||
|
|
{
|
||
|
|
public string Key { get; set; } = string.Empty;
|
||
|
|
public string Value { get; set; } = string.Empty;
|
||
|
|
}
|