mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
15 lines
313 B
C#
15 lines
313 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; }
|
|
|
|
|
|
}
|
|
}
|