Api-PWA/DocuMed.Common/Models/Mapper/IBaseDto.cs

11 lines
258 B
C#
Raw Permalink Normal View History

2023-10-10 17:02:38 +03:30
using System.Linq.Expressions;
namespace DocuMed.Common.Models.Mapper
{
public interface IBaseDto<TDto,TEntity>
{
Guid Id { get; set; }
bool Compare(object obj);
static Expression<Func<TEntity, TDto>> ProjectToDto;
}
}