Initial import

This commit is contained in:
Stein Helge Riise
2025-11-17 08:32:46 +01:00
commit ede31fbb7e
129 changed files with 9514 additions and 0 deletions
@@ -0,0 +1,13 @@
namespace MinAttest.Domain.Entities;
public class ShareLink
{
public Guid Id { get; set; }
public Guid AttestId { get; set; }
public Attest Attest { get; set; } = null!;
public string Code { get; set; } = string.Empty;
public DateTimeOffset ExpiresAt { get; set; }
public DateTimeOffset? RevokedAt { get; set; }
public bool OneTime { get; set; }
}