yavsc/src/Yavsc.Api.Client
Paul Schneider 980153a9fc refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto
When commit d14f06bc moved BlogPost from PostIt.Models to
Yavsc.Blogspot, it created an unfortunate collision with the
server-side EF entity Yavsc.Models.Blog.BlogPost. The two
classes have nothing in common beyond the name; the DTO is
the wire shape PostIt exchanges with the Blogs API, the EF
entity is the persistence model. Server code that imports both
namespaces (BlogSpotService.cs, etc.) ended up with 'BlogPost
is an ambiguous reference between X and Y' errors.

Renaming the client DTO to BlogPostDto (matching the
naming convention of the other DTOs in Yavsc.Api.Client.Dtos
— CircleDto, CircleAuthorizationDto, UserSearchResultDto)
disambiguates without renaming the EF entity on the server.

The namespace stays Yavsc.Blogspot; only the class name
changes. All call sites (client code, tests, XAML DataTemplates,
XML doc comments) are updated mechanically.
2026-08-18 00:20:01 +01:00
..
Dtos feat(api-client): add Yavsc.Api.Client with Blog + Circle + BlogAcl clients 2026-08-17 23:50:35 +01:00
BlogAclApiClient.cs refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto 2026-08-18 00:20:01 +01:00
BlogApiClient.cs refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto 2026-08-18 00:20:01 +01:00
CircleApiClient.cs feat(api-client): add Yavsc.Api.Client with Blog + Circle + BlogAcl clients 2026-08-17 23:50:35 +01:00
IYavscApiClient.cs refactor(api-client): introduce IYavscApiClient abstraction in Yavsc.Api.Client 2026-08-17 23:50:24 +01:00
Yavsc.Api.Client.csproj refactor(api-client): introduce IYavscApiClient abstraction in Yavsc.Api.Client 2026-08-17 23:50:24 +01:00