| | | 1 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 2 | | |
| | | 3 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 4 | | { |
| | | 5 | | public class Photo : ExternalRecord, ITrackableRecord |
| | | 6 | | { |
| | 22 | 7 | | public string PreviewUrl { get; set; } |
| | 0 | 8 | | public string FullSizeUrl { get; set; } |
| | | 9 | | |
| | 22 | 10 | | public int PreviewWidth { get; set; } |
| | 22 | 11 | | public int PreviewHeight { get; set; } |
| | | 12 | | |
| | 0 | 13 | | public int FullSizeWidth { get; set; } |
| | 0 | 14 | | public int FullSizeHeight { get; set; } |
| | | 15 | | |
| | | 16 | | [NotMapped] |
| | 0 | 17 | | public string FullSizePath { get; set; } |
| | | 18 | | |
| | | 19 | | [NotMapped] |
| | 0 | 20 | | public string PreviewPath { get; set; } |
| | | 21 | | } |
| | | 22 | | } |