LANCommander/LANCommander.SDK/Models/SavePath.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

16 lines
397 B
C#

using LANCommander.SDK.Enums;
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class SavePath
{
public Guid Id { get; set; }
public SavePathType Type { get; set; }
public string Path { get; set; }
public string WorkingDirectory { get; set; }
public bool IsRegex { get; set; }
}
}