Geoffrey-rs/geoffrey_models/src/models/locations/shop.rs

11 lines
231 B
Rust

use std::collections::HashSet;
use serde::{Deserialize, Serialize};
use crate::models::item::ItemListing;
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct Shop {
pub item_listings: HashSet<ItemListing>,
}