Initial commit

This commit is contained in:
David Allen 2022-12-04 11:26:52 -06:00
commit 8bde43bd49
152 changed files with 5294 additions and 0 deletions

12
server/QrScannerModel.cs Normal file
View file

@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Identity;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
namespace QrScanner.Models;
[BsonIgnoreExtraElements]
public class QrCode
{
public ObjectId _id { get; set; }
public string data { get; set; }
}