mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
15 lines
329 B
C#
15 lines
329 B
C#
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace BTCPayServer.Plugins.Test.Data
|
||
|
{
|
||
|
public class TestPluginData
|
||
|
{
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public string Id { get; set; }
|
||
|
public DateTimeOffset Timestamp { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|