mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
15 lines
317 B
C#
15 lines
317 B
C#
using System;
|
|
|
|
namespace Wabbajack.DTOs.DownloadStates;
|
|
|
|
public interface IMetaState
|
|
{
|
|
string? Name { get; set; }
|
|
string? Author { get; set; }
|
|
string? Version { get; set; }
|
|
Uri? ImageURL { get; set; }
|
|
bool IsNSFW { get; set; }
|
|
string? Description { get; set; }
|
|
|
|
Uri? LinkUrl { get; }
|
|
} |