123456789101112131415161718192021222324252627 |
-
- using System.Collections.Generic;
- //using System.ComponentModel.DataAnnotations;
- using FastReport.Utils.Json.Serialization;
- namespace FastReport.Cloud.FastReport.Models
- {
- internal abstract class FileCreateVM
- {
- [JsonProperty("name")]
- //[StringLength(250)]
- public string Name { get; set; }
- [JsonProperty("tags")]
- //[MaxLength(3)]
- public ICollection<string> Tags { get; set; }
- [JsonProperty("icon")]
- //[StringLength(65536)]
- public byte[] Icon { get; set; }
- [JsonProperty("content")]
- //[StringLength(1073741824)]
- public byte[] Content { get; set; }
- }
- }
|