storelib_rs 0.1.4

Rust port of StoreLib - Microsoft Store API client
Documentation
1
2
3
4
5
6
7
8
9
use crate::models::enums::ProductKind;

/// A lightweight representation of a Store add-on (DLC / IAP).
#[derive(Debug, Clone)]
pub struct Addon {
    pub product_id: String,
    pub product_type: ProductKind,
    pub display_name: String,
}