8 lines
222 B
C#
8 lines
222 B
C#
namespace LANCommander.Steam.Models;
|
|
|
|
public class SteamScreenshot
|
|
{
|
|
public int Id { get; set; }
|
|
public string PathThumbnail { get; set; } = string.Empty;
|
|
public string PathFull { get; set; } = string.Empty;
|
|
}
|