Projekt

Obecné

Profil

Stáhnout (457 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 Models.Annotations;
8

    
9
public class AnnotationsAddRequest
10
{
11
    /// <summary>
12
    /// List of users to assigned the documents
13
    /// </summary>
14
    public List<Guid> UserIdList { get; set; }
15
    /// <summary>
16
    /// List of documents to assign the users
17
    /// </summary>
18
    public List<Guid> DocumentIdList { get; set; }
19
}
20

    
(6-6/9)