LANCommander/LANCommander.SDK/Models/SavePath.cs

17 lines
492 B
C#

using LANCommander.SDK.Enums;
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class SavePath : KeyedModel
{
public SavePathType Type { get; set; }
public string Path { get; set; }
public string WorkingDirectory { get; set; }
public bool IsRegex { get; set; }
public RuntimePlatform Platforms { get; set; }
public IEnumerable<SavePathEntry> Entries { get; set; }
}
}