10 lines
220 B
C#
10 lines
220 B
C#
namespace ConstructorApp.DtoLayer.CompanyInfoVideoDto
|
|
{
|
|
public class GetCompanyInfoVideoDto
|
|
{
|
|
public int CompanyInfoVideoID { get; set; }
|
|
public string? VideoUrl { get; set; }
|
|
|
|
}
|
|
}
|