mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
263 B
C#
16 lines
263 B
C#
namespace Wabbajack.Server.Lib.DTOs;
|
|
|
|
public enum StorageSpace
|
|
{
|
|
AuthoredFiles,
|
|
Patches,
|
|
Mirrors
|
|
}
|
|
|
|
public class FtpSite
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Hostname { get; set; }
|
|
|
|
} |