Add project files.
This commit is contained in:
10
ConstructorApp.DtoLayer/CompanyInfoDto/GetCompanyInfoDto.cs
Normal file
10
ConstructorApp.DtoLayer/CompanyInfoDto/GetCompanyInfoDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace ConstructorApp.DtoLayer.CompanyInfoDto
|
||||
{
|
||||
public class GetCompanyInfoDto
|
||||
{
|
||||
public int CompanyInfoID { get; set; }
|
||||
public string? Value { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? SubTitle { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace ConstructorApp.DtoLayer.CompanyInfoDto
|
||||
{
|
||||
public class ResultCompanyInfoDto
|
||||
{
|
||||
public int CompanyInfoID { get; set; }
|
||||
public string? Value { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? SubTitle { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user