mirror of
https://github.com/bitwarden/server
synced 2025-12-19 09:43:25 +00:00
* [deps]: Update Duende.IdentityServer to v6.3.6 * Fix test * Grant table changes * Reassert view * EF migrations * Restore non-null key and simpler index * Master SQL sync * Lint * Fix ID setting since the property isn't exposed * Bump to .7 * Point to new Duende package * Drop unused indexes first --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
26 lines
763 B
C#
26 lines
763 B
C#
#nullable enable
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Auth.Entities;
|
|
|
|
public class Grant
|
|
{
|
|
public int Id { get; set; }
|
|
[MaxLength(200)]
|
|
public string Key { get; set; } = null!;
|
|
[MaxLength(50)]
|
|
public string Type { get; set; } = null!;
|
|
[MaxLength(200)]
|
|
public string? SubjectId { get; set; }
|
|
[MaxLength(100)]
|
|
public string? SessionId { get; set; }
|
|
[MaxLength(200)]
|
|
public string ClientId { get; set; } = null!;
|
|
[MaxLength(200)]
|
|
public string? Description { get; set; }
|
|
public DateTime CreationDate { get; set; } = DateTime.UtcNow;
|
|
public DateTime? ExpirationDate { get; set; }
|
|
public DateTime? ConsumedDate { get; set; }
|
|
public string Data { get; set; } = null!;
|
|
}
|