Files
Backend-Api/Company.Domain/ModuleTextManagerAgg/EntityModuleTextManager.cs
2024-07-05 21:36:15 +03:30

16 lines
355 B
C#

using Company.Domain.ModuleAgg;
using Company.Domain.TextManagerAgg;
namespace Company.Domain.ModuleTextManagerAgg;
public class EntityModuleTextManager
{
public long ModuleId { get; set; }
public EntityModule Module { get; set; }
public long TextManagerId { get; set; }
public EntityTextManager TextManager { get; set; }
}