mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
391 B
C#
17 lines
391 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.BuildServer.Models
|
|
{
|
|
public class ApiKey
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Key { get; set; }
|
|
public string Owner { get; set; }
|
|
|
|
public List<string> CanUploadLists { get; set; }
|
|
public List<string> Roles { get; set; }
|
|
}
|
|
}
|