Basic Structure for adding Students and BookTypes

This commit is contained in:
2017-05-16 03:04:42 +02:00
commit 90b097f73d
110 changed files with 296056 additions and 0 deletions

View File

@ -0,0 +1,18 @@
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Bson;
namespace BuechermarktClient.Models
{
public class BookType
{
[BsonId]
public ObjectId ID { get; set; }
[BsonElement("name")]
public string Name { get; set; }
[BsonElement("isbn")]
public string ISBN { get; set; }
}
}