mirror of https://github.com/Squidex/squidex.git
12 changed files with 27 additions and 83 deletions
@ -1,29 +0,0 @@ |
|||||
// ==========================================================================
|
|
||||
// MongoSchemaEntityWebhook.cs
|
|
||||
// Squidex Headless CMS
|
|
||||
// ==========================================================================
|
|
||||
// Copyright (c) Squidex Group
|
|
||||
// All rights reserved.
|
|
||||
// ==========================================================================
|
|
||||
|
|
||||
using System; |
|
||||
using MongoDB.Bson.Serialization.Attributes; |
|
||||
using Squidex.Read.Schemas; |
|
||||
|
|
||||
namespace Squidex.Read.MongoDb.Schemas |
|
||||
{ |
|
||||
public sealed class MongoSchemaEntityWebhook : ISchemaWebhookEntity |
|
||||
{ |
|
||||
[BsonRequired] |
|
||||
[BsonElement] |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
[BsonRequired] |
|
||||
[BsonElement] |
|
||||
public Uri Url { get; set; } |
|
||||
|
|
||||
[BsonRequired] |
|
||||
[BsonElement] |
|
||||
public string SecurityToken { get; set; } |
|
||||
} |
|
||||
} |
|
||||
Loading…
Reference in new issue