// ========================================================================== // RenameClientDto.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== using System.ComponentModel.DataAnnotations; namespace Squidex.Controllers.Api.Apps.Models { public class RenameClientDto { /// /// The new display name of the client. /// [Required] [StringLength(20)] public string Name { get; set; } } }