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

18 lines
412 B
C#
Raw Normal View History

2022-11-18 01:37:10 +03:00
using System.Collections.Generic;
2022-11-18 03:15:53 +03:00
using CodeLiturgy.Data.Application.Users;
2022-11-26 01:35:47 +03:00
using MapTo;
2022-11-18 01:37:10 +03:00
2022-11-18 01:39:36 +03:00
namespace CodeLiturgy.Data.Application
2022-11-18 01:37:10 +03:00
{
2022-11-26 01:35:47 +03:00
public partial class SiteEnvironment
2022-11-18 01:37:10 +03:00
{
public string Id { get; set; }
2022-11-18 03:15:53 +03:00
public string Name { get; set; }
public string UserId { get; set; }
2022-11-26 01:35:47 +03:00
public ApplicationUser User { get; set; }
public List<Site> Sites { get; set; }
2022-11-18 01:37:10 +03:00
}
}