-
- //using System.ComponentModel.DataAnnotations;
- using FastReport.Utils.Json.Serialization;
- namespace FastReport.Cloud.FastReport.Models
- {
- internal sealed class RenameVM
- {
- [JsonProperty("name")]
- //[Required]
- //[StringLength(50, MinimumLength = 1)]
- public string Name { get; set; }
- }
- }
|