Projekt

Obecné

Profil

« Předchozí | Další » 

Revize a35cb648

Přidáno uživatelem Vojtěch Bartička před asi 2 roky(ů)

Added comments to backend

Zobrazit rozdíly:

Backend/Core/Entities/Document.cs
11 11
#nullable disable
12 12
    public class Document : BaseEntity
13 13
    {
14
        /// <summary>
15
        /// Document name
16
        /// </summary>
14 17
        public string Name { get; set; }
18

  
19
        /// <summary>
20
        /// Length in characters
21
        /// </summary>
15 22
        public int Length { get; set; }
16 23

  
24
        /// <summary>
25
        /// Actual content
26
        /// </summary>
17 27
        public DocumentContent Content { get; set; }
18 28

  
29
        /// <summary>
30
        /// Date added
31
        /// </summary>
19 32
        public DateTime DateAdded { get; set; }
20 33

  
34
        /// <summary>
35
        /// User who added it
36
        /// </summary>
21 37
        public User UserAdded { get; set; }
22 38

  
39
        /// <summary>
40
        /// Number of required annotations
41
        /// </summary>
23 42
        public int RequiredAnnotations { get; set; }
24 43
    }
25 44
}

Také k dispozici: Unified diff