Projekt

Obecné

Profil

Stáhnout (701 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 fe0ccf07 Vojtěch Bartička
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 2c9afc72 Vojtěch Bartička
    public class FinalAnnotationTag : AnnotationTagGeneric
10 fe0ccf07 Vojtěch Bartička
    {
11 a35cb648 Vojtěch Bartička
        /// <summary>
12
        /// FinalAnnotation the tag is linked to
13
        /// </summary>
14 2c9afc72 Vojtěch Bartička
        public FinalAnnotation Annotation { get; set; }
15 a35cb648 Vojtěch Bartička
16
        /// <summary>
17
        /// Whether the tag is marked as final or not
18
        /// </summary>
19 fe0ccf07 Vojtěch Bartička
        public bool IsFinal { get; set; } = false;
20 a35cb648 Vojtěch Bartička
        
21
        /// <summary>
22
        /// List of users who have agreed on this tag
23
        /// </summary>
24 8c9ce202 Vojtěch Bartička
        public ICollection<User> Users { get; set; } = new List<User>();
25 fe0ccf07 Vojtěch Bartička
    }
26
}