14 lines
282 B
C#
14 lines
282 B
C#
using System;
|
|
|
|
namespace RdtClient.Data.Models.Internal
|
|
{
|
|
public class AppSettings
|
|
{
|
|
public AppSettingsConnectionStrings ConnectionStrings { get; set; }
|
|
}
|
|
|
|
public class AppSettingsConnectionStrings
|
|
{
|
|
public String Client { get; set; }
|
|
}
|
|
}
|