13 lines
243 B
C#
13 lines
243 B
C#
|
using MongoDB.Bson;
|
||
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
||
|
namespace Models;
|
||
|
|
||
|
public class ToDo
|
||
|
{
|
||
|
[BsonId]
|
||
|
[BsonRepresentation(BsonType.ObjectId)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
public string Description { get; set; }
|
||
|
}
|