mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
21 lines
532 B
C#
21 lines
532 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class StoredFile
|
|
{
|
|
[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;
|
|
}
|
|
}
|
|
}
|