Skip to content

Commit

Permalink
368 introduce IContentItem
Browse files Browse the repository at this point in the history
  • Loading branch information
Sevitas committed Mar 9, 2023
1 parent 5838d3a commit 79a71bd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Kontent.Ai.Delivery.Abstractions/ContentItems/IContentItem.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace Kontent.Ai.Delivery.Abstractions;

/// <summary>
/// Represents content item.
/// </summary>
public interface IContentItem
{
/// <summary>
/// Represents system attributes of a content item.
/// </summary>
public IContentItemSystemAttributes System { get; set; }
}

0 comments on commit 79a71bd

Please sign in to comment.