Projekt

Obecné

Profil

Stáhnout (701 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

    
7
namespace Core.Entities
8
{
9
    public class FinalAnnotationTag : AnnotationTagGeneric
10
    {
11
        /// <summary>
12
        /// FinalAnnotation the tag is linked to
13
        /// </summary>
14
        public FinalAnnotation Annotation { get; set; }
15

    
16
        /// <summary>
17
        /// Whether the tag is marked as final or not
18
        /// </summary>
19
        public bool IsFinal { get; set; } = false;
20
        
21
        /// <summary>
22
        /// List of users who have agreed on this tag
23
        /// </summary>
24
        public ICollection<User> Users { get; set; } = new List<User>();
25
    }
26
}
(10-10/14)