LANCommander/LANCommander.Server/Models/AddToCollectionOptions.cs

8 lines
151 B
C#
Raw Normal View History

2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Models
{
public class AddToCollectionOptions
{
public IEnumerable<Guid> GameIds { get; set; }
}
}