using System.Collections.Generic; using CodeLiturgy.Data.Application.Users; using MapTo; namespace CodeLiturgy.Data.Application { public partial class SiteEnvironment { public string Id { get; set; } public string Name { get; set; } public string UserId { get; set; } public ApplicationUser User { get; set; } public List Sites { get; set; } } }