Files
constructdemo/ConstructorAppUI/Dtos/CompanyInfoDtos/UpdateCompanyInfoDto.cs
2025-05-01 15:18:30 +03:00

11 lines
284 B
C#

namespace ConstructorAppUI.Dtos.CompanyInfoDtos
{
public class UpdateCompanyInfoDto
{
public int CompanyInfoID { get; set; }
public string? Value { get; set; }
public string? Title { get; set; }
public string? SubTitle { get; set; }
}
}