* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
8 lines
172 B
C#
8 lines
172 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class ConfigElement
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
} |