| | | 1 | | using SVETA.Api.Data.DTO.Movements; |
| | | 2 | | using SVETA.Api.Data.DTO.DepartmentDTO; |
| | | 3 | | using System; |
| | | 4 | | using System.Collections.Generic; |
| | | 5 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 6 | | using WinSolutions.Sveta.Server.Data.DataModel.Entities; |
| | | 7 | | using WinSolutions.Sveta.Server.Domain; |
| | | 8 | | |
| | | 9 | | namespace SVETA.Api.Data.DTO |
| | | 10 | | { |
| | | 11 | | public class AttachmentDTO |
| | | 12 | | { |
| | 0 | 13 | | public AttachmentDTO() { } |
| | | 14 | | /// <summary> |
| | | 15 | | /// Название файла |
| | | 16 | | /// </summary> |
| | 0 | 17 | | public string FileName { get; set; } |
| | | 18 | | /// <summary> |
| | | 19 | | /// Путь к файлу |
| | | 20 | | /// </summary> |
| | 0 | 21 | | public string FilePath { get; set; } |
| | | 22 | | } |
| | | 23 | | } |