LANCommander/LANCommander.SDK/Models/Collection.cs
Pat Hartl a14b7cdeac Slim down responses from game imports
Reduced the amount of data being sent to the client from the API which results in smaller, somewhat faster requests. In a library of ~250 games the requests went from 5.6MB to 3.3MB.
2024-05-07 20:08:07 -05:00

10 lines
174 B
C#

using System;
namespace LANCommander.SDK.Models
{
public class Collection
{
public Guid Id { get; set; }
public string Name { get; set; }
}
}