namespace LANCommander.Launcher.Avalonia.ViewModels.Components; /// Represents a single screenshot or video in the game detail media carousel. public class GameMediaItemViewModel { public string Path { get; set; } = string.Empty; public bool IsVideo { get; set; } public string MimeType { get; set; } = string.Empty; }