-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathBaseItem.cs
33 lines (27 loc) · 848 Bytes
/
BaseItem.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using Newtonsoft.Json;
using System;
namespace ServerlessMicroservices.Models
{
// The DigitalMemberships cosmos collection contains several documents of different types. This enumeration is a differatiator
public enum ItemCollectionTypes
{
Driver,
DriverLocation,
Car,
Trip,
Passenger
}
public class BaseItem
{
[JsonProperty("id")]
public string Id { get; set; } = "";
[JsonProperty("self")]
public string Self { get; set; } = "";
[JsonProperty("correlationId")]
public string CorrelationId { get; set; } = "";
[JsonProperty("upsertDate")]
public DateTime UpsertDate { get; set; } = DateTime.Now;
[JsonProperty("collectionType")]
public ItemCollectionTypes CollectionType { get; set; }
}
}