mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
461 B
22 lines
461 B
using System.Collections.Generic;
|
|
|
|
namespace ConfigurationTests
|
|
{
|
|
public class AppConfig
|
|
{
|
|
public string Url;
|
|
public int BatchSize;
|
|
public IEnumerable<string> Sheme;
|
|
public IEnumerable<int> Port;
|
|
public ServiceConfig Service;
|
|
}
|
|
|
|
public class ServiceConfig
|
|
{
|
|
public string AppName;
|
|
public string AppKey;
|
|
public string ServiceGroup;
|
|
public string ServiceType;
|
|
}
|
|
}
|