LANCommander/LANCommander.SDK/Models/SavePath.cs

17 lines
437 B
C#
Raw Permalink Normal View History

2023-03-28 21:30:29 -05:00
using LANCommander.SDK.Enums;
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class SavePath : KeyedModel
2023-03-28 21:30:29 -05:00
{
public SavePathType Type { get; set; }
public string Path { get; set; }
public string WorkingDirectory { get; set; }
2023-11-08 20:43:18 -06:00
public bool IsRegex { get; set; }
2024-08-26 18:37:57 -05:00
public IEnumerable<SavePathEntry> Entries { get; set; }
2023-03-28 21:30:29 -05:00
}
}