Removed more unnecessary files from cache

- Updated `.gitignore`
- Added `README.md` file
This commit is contained in:
David Allen 2023-05-29 21:16:50 -06:00
parent a57ee1918e
commit fccd30a223
10 changed files with 656 additions and 119 deletions

View file

@ -7,6 +7,9 @@ namespace QrScanner.Models;
[BsonIgnoreExtraElements]
public class QrCode
{
[BsonId]
public ObjectId _id { get; set; }
public string data { get; set; }
public string? id { get; set; }
// public DateTime timestamp { get; set; }
public string? data { get; set; }
}