11 lines
281 B
C#
11 lines
281 B
C#
namespace ConstructorAppUI.Dtos.CompanyInfoDtos
|
|
{
|
|
public class GetCompanyInfoDto
|
|
{
|
|
public int CompanyInfoID { get; set; }
|
|
public string? Value { get; set; }
|
|
public string? Title { get; set; }
|
|
public string? SubTitle { get; set; }
|
|
}
|
|
}
|