Api/Brizco.Common/Models/Mapper/IBaseDto.cs

11 lines
257 B
C#
Raw Normal View History

2023-09-08 12:25:21 +03:30
using System.Linq.Expressions;
namespace Brizco.Common.Models.Mapper
{
public interface IBaseDto<TDto,TEntity>
{
Guid Id { get; set; }
2023-09-08 12:25:21 +03:30
bool Compare(object obj);
static Expression<Func<TEntity, TDto>> ProjectToDto;
}
}