api/HamyanEdalat.Common/Models/Mapper/IBaseDto.cs

11 lines
263 B
C#
Raw Normal View History

2024-03-09 19:53:01 +03:30
using System.Linq.Expressions;
namespace HamyanEdalat.Common.Models.Mapper
{
public interface IBaseDto<TDto,TEntity>
{
Guid Id { get; set; }
bool Compare(object obj);
static Expression<Func<TEntity, TDto>> ProjectToDto;
}
}