10 lines
199 B
C#
10 lines
199 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class ConfigElement
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|