CompanyBaseStructures.cs
943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
namespace Sungero.Parties.Structures.CompanyBase
{
partial class FoundCompanies
{
public string Message { get; set; }
public List<Sungero.Parties.Structures.CompanyBase.CompanyDisplayValue> CompanyDisplayValues { get; set; }
public List<Sungero.Parties.Structures.CompanyBase.FoundContact> FoundContacts { get; set; }
public int Amount { get; set; }
}
partial class CompanyDisplayValue
{
public string DisplayValue { get; set; }
public string PSRN { get; set; }
}
partial class FoundContact
{
public string FullName { get; set; }
public string JobTitle { get; set; }
public string Phone { get; set; }
}
partial class BusinessEntity
{
public string FullName { get; set; }
public string ShortName { get; set; }
}
}