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

25 lines
654 B
C#
Raw Normal View History

2021-03-05 20:06:49 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2021-03-09 15:37:16 +00:00
namespace ASC.CRM.ApiModels
2021-03-05 20:06:49 +00:00
{
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; }
}
}