Projekt

Obecné

Profil

Stáhnout (457 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 eff8ec56 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 Models.Annotations;
8
9
public class AnnotationsAddRequest
10
{
11 4b03d2a7 Vojtěch Bartička
    /// <summary>
12
    /// List of users to assigned the documents
13
    /// </summary>
14 eff8ec56 Vojtěch Bartička
    public List<Guid> UserIdList { get; set; }
15 4b03d2a7 Vojtěch Bartička
    /// <summary>
16
    /// List of documents to assign the users
17
    /// </summary>
18 eff8ec56 Vojtěch Bartička
    public List<Guid> DocumentIdList { get; set; }
19
}