// ==========================================================================
// EntityCreatedDto.cs
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex Group
// All rights reserved.
// ==========================================================================
using System.ComponentModel.DataAnnotations;
namespace Squidex.Controllers.Api
{
public class EntityCreatedDto
{
///
/// Id of the created entity.
///
[Required]
public string Id { get; set; }
///
/// The new version of the entity.
///
public long Version { get; set; }
}
}