Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/ICheckEntityLogic.cs
2024-08-04 23:01:10 +05:00

14 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface ICheckEntityLogic<TEntity> : ICheckLogic
{
TEntity Entity { get; set; }
}
}