All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Created Dockerfile for packing up API and Web projects as Docker image
10 lines
175 B
C#
10 lines
175 B
C#
|
|
namespace YABA.Common.DTOs
|
|
{
|
|
public class WebsiteMetaDataDTO
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|