DocSpace-buildtools/products/ASC.People/Server/Models/StartReassignModel.cs
2020-11-11 18:36:58 +03:00

15 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ASC.People.Models
{
public class StartReassignModel
{
public Guid FromUserId { get; set; }
public Guid ToUserId { get; set; }
public bool DeleteProfile { get; set; }
}
}