1234567891011121314151617181920212223 |
-
- using System.Collections.Generic;
- //using System.ComponentModel.DataAnnotations;
- using FastReport.Utils.Json.Serialization;
- namespace FastReport.Cloud.FastReport.Models
- {
- internal sealed class FolderCreateVM
- {
- [JsonProperty("name")]
- //[StringLength(250, MinimumLength = 1)]
- public string Name { get; set; }
- [JsonProperty("tags")]
- //[MaxLength(3)]
- public ICollection<string> Tags { get; set; }
- [JsonProperty("icon")]
- //[StringLength(65536)]
- public byte[] Icon { get; set; }
- }
- }
|