| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | using System.ComponentModel.DataAnnotations; |
| | | 5 | | |
| | | 6 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 7 | | { |
| | | 8 | | public class NotificationUsers : ExternalRecord, ITrackableRecord |
| | | 9 | | { |
| | | 10 | | [Required] |
| | | 11 | | /// <summary> |
| | | 12 | | /// Коммуникация |
| | | 13 | | /// </summary> |
| | 1490 | 14 | | public Notification Notification { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Пользователи |
| | | 18 | | /// </summary> |
| | 1490 | 19 | | public User User { get; set; } |
| | | 20 | | |
| | | 21 | | /// <summary> |
| | | 22 | | /// Статус |
| | | 23 | | /// </summary> |
| | 1490 | 24 | | public NotificationsStatus NotificationsStatus { get; set; } |
| | | 25 | | |
| | | 26 | | } |
| | | 27 | | } |