-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathNote.cs
More file actions
36 lines (34 loc) · 748 Bytes
/
Note.cs
File metadata and controls
36 lines (34 loc) · 748 Bytes
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
34
35
36
namespace BervProject.WebApi.Boilerplate.Entities;
using System;
using Azure;
using Azure.Data.Tables;
/// <summary>
/// Note
/// </summary>
public class Note : ITableEntity
{
/// <summary>
/// Partition Key
/// </summary>
public string PartitionKey { get; set; }
/// <summary>
/// Row key
/// </summary>
public string RowKey { get; set; }
/// <summary>
/// Title
/// </summary>
public string Title { get; set; }
/// <summary>
/// Message
/// </summary>
public string Message { get; set; }
/// <summary>
/// Timestamp
/// </summary>
public DateTimeOffset? Timestamp { get; set; }
/// <summary>
/// ETag
/// </summary>
public ETag ETag { get; set; }
}