mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Plugins - Tweaked prerequisite installation popup size Account settings - Added personal access token management Workshop - Added plugin loading, installing and removal
9 lines
272 B
C#
9 lines
272 B
C#
namespace Artemis.WebClient.Workshop.Models;
|
|
|
|
public class PersonalAccessToken
|
|
{
|
|
public string Key { get; init; }
|
|
public DateTimeOffset CreationTime { get; init; }
|
|
public DateTimeOffset? Expiration { get; init; }
|
|
public string? Description { get; init; }
|
|
} |