| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Linq; |
| | | 4 | | using System.Threading.Tasks; |
| | | 5 | | |
| | | 6 | | namespace SVETA.Api.Data.Domain |
| | | 7 | | { |
| | | 8 | | public class ImagesSettings |
| | | 9 | | { |
| | 8 | 10 | | public string ImageSavePath { get; set; } |
| | 30 | 11 | | public string ImageUrl { get; set; } |
| | 19 | 12 | | public int ImagePreveiwWidth { get; set; } |
| | 19 | 13 | | public int ImagePreveiwHeight { get; set; } |
| | 19 | 14 | | public int ImageFullsizeWidth { get; set; } |
| | 19 | 15 | | public int ImageFullsizeHeight { get; set; } |
| | 30 | 16 | | public string PlaceholderImageUrl { get; set; } |
| | | 17 | | } |
| | | 18 | | } |