11 lines
285 B
C#
11 lines
285 B
C#
namespace ConstructorApp.DtoLayer.CompanyInfoDto
|
|
{
|
|
public class UpdateCompanyInfoDto
|
|
{
|
|
public int CompanyInfoID { get; set; }
|
|
public string? Value { get; set; }
|
|
public string? Title { get; set; }
|
|
public string? SubTitle { get; set; }
|
|
}
|
|
}
|