wabbajack/Wabbajack.BuildServer/Models/ApiKey.cs

17 lines
391 B
C#
Raw Normal View History

2020-01-16 05:06:25 +00:00
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; }
}
}