Add background color to sales person

This commit is contained in:
Simon Goller 2024-06-18 06:27:29 +02:00
parent b4b926a8e4
commit eb54665596
6 changed files with 68 additions and 6 deletions

View file

@ -10,6 +10,7 @@ use crate::DaoError;
pub struct SalesPersonEntity {
pub id: Uuid,
pub name: Arc<str>,
pub background_color: Arc<str>,
pub deleted: Option<time::PrimitiveDateTime>,
pub inactive: bool,
pub version: Uuid,