This package defines a listing of common data transfer objects - this will be used to transport data from API to client and vice versa.
$ dotnet add package NasaDtoNasaDto is a package that defines a set of Data Transfer Objects (DTOs) for use between clients and the Nasa API. These objects facilitate structured data transportation between APIs and consuming applications.
This package is available via the internal NuGet feed. "\devdrive\NugetLocalSource" (builds to J Drive)
Simply reference the package in your project and import the required DTOs:
using NasaDto.Models;
var dto = new ExampleDto {
Id = 1,
Name = "Sample Data"
};
## Dependencies
This package references:
- `Microsoft.AspNetCore.Mvc` **v2.2.0** (now referenced via project file instead of NuGet).
## Changelog
### **v1.7.04**
- **Added**: `InUseWeb` and `InUseWebDateTime` fields to Security_DTO
- **Added**: .gitignore file
### **v1.7.02**
- **Reverted**: DtoBase namespace change (breaking change), removed editor config
### **v1.7.01**
- **Added**: `ShowUnDocTextsOnly` field to User Preferences.
### **v1.7.00**
- **Updated**: Target framework changed from `.NET Standard 2.0` → `.NET Standard 2.1`.
- **Updated**: `Microsoft.AspNetCore.Mvc` is now referenced via project instead of NuGet.