DocSpace-buildtools/products/ASC.CRM/Server/ApiModels/SetAccessToBatchCasesInDto.cs

25 lines
654 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ASC.CRM.ApiModels
{
public class SetAccessToBatchCasesByFilterInDto
{
public int Contactid { get; set; }
public bool? isClosed { get; set; }
public IEnumerable<string> Tags { get; set; }
public bool isPrivate { get; set; }
public IEnumerable<Guid> AccessList { get; set; }
}
public class SetAccessToBatchCasesInDto
{
public IEnumerable<int> Casesid { get; set; }
public bool isPrivate { get; set; }
public IEnumerable<Guid> AccessList { get; set; }
}
}