// ========================================================================== // AttachClientDto.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== using System.ComponentModel.DataAnnotations; namespace Squidex.Controllers.Api.Apps.Models { public sealed class AttachClientDto { /// /// The id of the client. /// [Required] [RegularExpression("^[a-z0-9]+(\\-[a-z0-9]+)*$")] public string ClientId { get; set; } } }