1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.WebClient.Workshop/Models/PersonalAccessToken.cs
RobertBeekman f2c8de1746 Plugins - Fixed cancelling prerequisite installation
Plugins - Tweaked prerequisite installation popup size
Account settings - Added personal access token management
Workshop - Added plugin loading, installing and removal
2024-02-16 23:04:24 +01:00

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; }
}