backend: fix several entities

This commit is contained in:
Sphereso 2024-07-10 20:14:53 +02:00
parent 98a3029444
commit b7fc25b3da
3 changed files with 8 additions and 8 deletions

View file

@ -10,9 +10,9 @@ pub struct Model {
#[serde(skip_deserializing)]
pub id: Uuid,
pub name: String,
pub start: Option<DateTime>,
pub end: Option<DateTime>,
pub amount: Option<DateTime>,
pub start: Option<DateTimeWithTimeZone>,
pub end: Option<DateTimeWithTimeZone>,
pub amount: Option<i32>,
pub key: String,
pub group_id: Uuid,
}