diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-06-18 17:07:22 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-06-18 17:07:22 -0400 |
| commit | 3fd0b1a359241b8d5d4884424b72b5c1dc1caed0 (patch) | |
| tree | 918f61bbb7d9f6b2f0ae7858f360bc2aec67b8bd /Jellyfin.Data/Entities/Security/ApiKey.cs | |
| parent | 3d9c16ba6b8be965da8ed57510f8f90831ed1e22 (diff) | |
Recreate devices migration with missing fields
Diffstat (limited to 'Jellyfin.Data/Entities/Security/ApiKey.cs')
| -rw-r--r-- | Jellyfin.Data/Entities/Security/ApiKey.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Jellyfin.Data/Entities/Security/ApiKey.cs b/Jellyfin.Data/Entities/Security/ApiKey.cs index 2a3ad09c4..5c9ac5d5b 100644 --- a/Jellyfin.Data/Entities/Security/ApiKey.cs +++ b/Jellyfin.Data/Entities/Security/ApiKey.cs @@ -31,9 +31,14 @@ namespace Jellyfin.Data.Entities.Security public int Id { get; private set; } /// <summary> - /// Gets the date created. + /// Gets or sets the date created. /// </summary> - public DateTime DateCreated { get; private set; } + public DateTime DateCreated { get; set; } + + /// <summary> + /// Gets or sets the date of last activity. + /// </summary> + public DateTime DateLastActivity { get; set; } /// <summary> /// Gets or sets the name. |
