From 11dd008bbdacbf9be241d0c510a41a496a91a090 Mon Sep 17 00:00:00 2001 From: Magnus Lindholm Date: Wed, 4 Oct 2023 14:37:11 +0200 Subject: [PATCH] added filesize to identification --- acacore/models/identification.py | 1 + 1 file changed, 1 insertion(+) diff --git a/acacore/models/identification.py b/acacore/models/identification.py index a55eb6a..9effa0b 100644 --- a/acacore/models/identification.py +++ b/acacore/models/identification.py @@ -11,6 +11,7 @@ class Identification(ACABase): puid: Optional[str] signature: Optional[str] warning: Optional[str] + file_size: Optional[int] # noinspection PyNestedDecorators @model_validator(mode="before")