Files
StructureHelper/DataAccess/Infrastructures/IGetRootObjectByProjectLogic.cs
2024-11-09 21:52:05 +05:00

15 lines
329 B
C#

using StructureHelperCommon.Models.Projects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataAccess.Infrastructures
{
public interface IGetRootObjectByProjectLogic : IGetRootObjectLogic
{
IProject Project { get; set; }
}
}