steam_rs/site_license_service/mod.rs
1//! # Implements the `ISiteLicenseService` interface
2//!
3//! Provides access to services related to operating sites which are part of the Steam PC Cafe program.
4
5pub mod get_current_client_connections;
6pub mod get_total_playtime;
7
8use serde::{Deserialize, Serialize};
9
10const INTERFACE: &str = "ISiteLicenseService";
11
12#[derive(Debug, Deserialize, Serialize, Clone)]
13pub struct GameName {
14 /// ID number of entry.
15 pub id: u32,
16
17 /// Game name.
18 pub name: String,
19}