DocSpace-client/products/ASC.CRM/Server/ApiModels/CreateOrUpdatePersonInDto.cs

43 lines
1.1 KiB
C#
Raw Normal View History

2021-03-05 20:06:49 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading.Tasks;
using ASC.Api.Collections;
using ASC.CRM.Core.Enums;
using Microsoft.AspNetCore.Http;
2021-03-09 15:37:16 +00:00
namespace ASC.CRM.ApiModels
2021-03-05 20:06:49 +00:00
{
public class CreateOrUpdateContactInDto
{
public string About { get; set; }
public ShareType ShareType { get; set; }
public IEnumerable<Guid> ManagerList { get; set; }
public IEnumerable<ItemKeyValuePair<int, string>> CustomFieldList { get; set; }
public IEnumerable<IFormFile> Photos { get; set; }
}
public class CreateOrUpdateCompanyInDto : CreateOrUpdateContactInDto
{
2021-03-09 15:37:16 +00:00
2021-03-05 20:06:49 +00:00
public String CompanyName { get; set; }
public IEnumerable<int> PersonList { get; set; }
}
public class CreateOrUpdatePersonInDto : CreateOrUpdateContactInDto
{
public String FirstName { get; set; }
public String LastName { get; set; }
public String JobTitle { get; set; }
public int CompanyId { get; set; }
}
}