| | 1 | | using MRA.DTO.Enums.Drawing; |
| | 2 | | using System.ComponentModel.DataAnnotations; |
| | 3 | |
|
| | 4 | | namespace MRA.DTO.ViewModels.Art; |
| | 5 | |
|
| | 6 | | public class SaveDrawingRequest |
| | 7 | | { |
| 0 | 8 | | public string Id { get; set; } |
| | 9 | |
|
| | 10 | | [Required] |
| 0 | 11 | | public string? Path { get; set; } |
| | 12 | | [Required] |
| 0 | 13 | | public string? PathThumbnail { get; set; } |
| | 14 | |
|
| | 15 | | [Required] |
| 0 | 16 | | public bool Visible { get; set; } |
| | 17 | |
|
| | 18 | | [Required] |
| 0 | 19 | | public DrawingTypes Type { get; set; } |
| 0 | 20 | | public string? TagsText { get; set; } |
| 0 | 21 | | public string? Name { get; set; } |
| 0 | 22 | | public string? ModelName { get; set; } |
| 0 | 23 | | public string? SpotifyUrl { get; set; } |
| 0 | 24 | | public string? Title { get; set; } |
| | 25 | |
|
| | 26 | | [Required] |
| 0 | 27 | | public string DateHyphen { get; set; } |
| | 28 | |
|
| | 29 | | [Required] |
| 0 | 30 | | public DrawingSoftwares Software { get; set; } |
| | 31 | |
|
| | 32 | | [Required] |
| 0 | 33 | | public DrawingPaperSizes Paper { get; set; } |
| | 34 | |
|
| 0 | 35 | | public int? Time { get; set; } |
| | 36 | |
|
| | 37 | | [Required] |
| 0 | 38 | | public DrawingProductTypes ProductType { get; set; } |
| 0 | 39 | | public string? ProductName { get; set; } |
| | 40 | |
|
| | 41 | | [Required] |
| 0 | 42 | | public bool Favorite { get; set; } |
| | 43 | |
|
| 0 | 44 | | public string? ReferenceUrl { get; set; } |
| 0 | 45 | | public string? InstagramUrl { get; set; } |
| 0 | 46 | | public string? BlueskyUrl { get; set; } |
| | 47 | |
|
| | 48 | | [Required] |
| 0 | 49 | | public int ScoreCritic { get; set; } |
| | 50 | |
|
| | 51 | | [Required] |
| 0 | 52 | | public DrawingFilterTypes Filter { get; set; } |
| | 53 | |
|
| 0 | 54 | | public List<string>? ListComments { get; set; } |
| 0 | 55 | | public List<string>? ListCommentsPros { get; set; } |
| 0 | 56 | | public List<string>? ListCommentsCons { get; set; } |
| 0 | 57 | | public List<string>? ListCommentsStyle { get; set; } |
| | 58 | | } |