mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
14 lines
335 B
C#
14 lines
335 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace QRBee.Api.Services.Database
|
|
{
|
|
public class CertificateInfo
|
|
{
|
|
|
|
[BsonId] public string? Id { get; set; }
|
|
public string? ClientId { get; set; }
|
|
public string? Certificate { get; set; }
|
|
public DateTime ServerTimeStamp { get; set; }
|
|
}
|
|
}
|