18 lines
444 B
C#
18 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BCS.BMC.CheckCompanies.Dto
|
|
{
|
|
public class GetCompanyListDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public string DomainName { get; set; }
|
|
public string TopLevelDomainName { get; set; }
|
|
public string SubDomainName { get; set; }
|
|
}
|
|
}
|