mirror of
https://github.com/aliasvault/aliasvault.git
synced 2025-12-23 22:28:22 -05:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="Attachment.cs" company="lanedirt">
|
|
// Copyright (c) lanedirt. All rights reserved.
|
|
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace AliasClientDb;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using AliasClientDb.Abstracts;
|
|
|
|
/// <summary>
|
|
/// Attachment entity.
|
|
/// </summary>
|
|
public class Attachment : SyncableEntity
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the attachment primary key.
|
|
/// </summary>
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the filename value.
|
|
/// </summary>
|
|
[StringLength(255)]
|
|
public string Filename { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the file blob.
|
|
/// </summary>
|
|
public byte[] Blob { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the credential foreign key.
|
|
/// </summary>
|
|
public Guid CredentialId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the credential navigation property.
|
|
/// </summary>
|
|
[ForeignKey("CredentialId")]
|
|
public virtual Credential Credential { get; set; } = null!;
|
|
}
|