12 lines
205 B
C#
12 lines
205 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace CodeLiturgy.Data.Capital
|
||
|
{
|
||
|
public class SiteEnvironment
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public List<Site> Sites { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|