| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.ComponentModel.DataAnnotations; |
| | | 4 | | using System.Text; |
| | | 5 | | |
| | | 6 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 7 | | { |
| | | 8 | | public class TelegramNotification : ExternalRecord, ITrackableRecord |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// Хештэг уведомления |
| | | 12 | | /// </summary> |
| | | 13 | | [Required] |
| | 570 | 14 | | public string HashTag { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Описание уведомления |
| | | 18 | | /// </summary> |
| | 570 | 19 | | public string Description { get; set; } |
| | | 20 | | /// <summary> |
| | | 21 | | /// Статус хештэга |
| | | 22 | | /// </summary> |
| | 1130 | 23 | | public bool IsActive { get; set; } |
| | | 24 | | } |
| | | 25 | | } |