start new controllers

This commit is contained in:
2021-11-23 15:43:21 +01:00
parent bffddbe9a8
commit a9bf2d28cb
61 changed files with 578 additions and 891 deletions
+15
View File
@@ -0,0 +1,15 @@
namespace zero.Models;
[RavenCollection("Previews")]
public class ZeroEntityPreview : ZeroEntity
{
/// <summary>
/// Id of the original entity
/// </summary>
public string OriginalId { get; set; }
/// <summary>
/// Contains the entity content
/// </summary>
public ZeroEntity Content { get; set; }
}