Files
constructdemo/ConstructorApp.DtoLayer/CompanyInfoVideoDto/GetCompanyInfoVideoDto.cs
2025-05-01 15:18:30 +03:00

10 lines
220 B
C#

namespace ConstructorApp.DtoLayer.CompanyInfoVideoDto
{
public class GetCompanyInfoVideoDto
{
public int CompanyInfoVideoID { get; set; }
public string? VideoUrl { get; set; }
}
}