mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
19 lines
558 B
C#
19 lines
558 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BTCPayServer.Abstractions.Contracts;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class StoredFile : IStoredFile
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public string Id { get; set; }
|
|
|
|
public string FileName { get; set; }
|
|
public string StorageFileName { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string ApplicationUserId { get; set; }
|
|
public ApplicationUser ApplicationUser { get; set; }
|
|
}
|
|
}
|