LANCommander/LANCommander.SDK/Models/SavePath.cs
2024-08-26 18:37:57 -05:00

16 lines
437 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 IEnumerable<SavePathEntry> Entries { get; set; }
}
}