LANCommander/LANCommander.SDK/Models/SavePath.cs

16 lines
372 B
C#
Raw 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 : BaseModel
{
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; }
2023-03-28 21:30:29 -05:00
}
}