CodeLiturgy.Dashboard/CodeLiturgy.Data.Application/Sites/SiteEnvironment.cs

12 lines
209 B
C#
Raw Normal View History

2022-11-18 01:37:10 +03:00
using System.Collections.Generic;
2022-11-18 01:39:36 +03:00
namespace CodeLiturgy.Data.Application
2022-11-18 01:37:10 +03:00
{
public class SiteEnvironment
{
public string Id { get; set; }
public List<Site> Sites { get; set; }
}
}