All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: #42 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
export interface BovineData {
|
|
id: number
|
|
nationalNumber: string
|
|
receivedWeight: number | null
|
|
arrivalDate: string | null
|
|
buildingCase: string | null
|
|
}
|
|
|
|
export type BovinePayload = {
|
|
nationalNumber?: string
|
|
receivedWeight?: number | null
|
|
arrivalDate?: string | null
|
|
buildingCase?: string | null
|
|
}
|