ln.bson/ln.bson.tests/DocumentContent.cs

11 lines
226 B
C#
Raw Normal View History

2022-06-03 13:07:13 +02:00
using System;
namespace ln.bson.tests
{
public class DocumentContent
{
public bool Authentic { get; set; }
public DateTime Created { get; set; }
public byte[] ContentHash { get; set; }
}
}