Add project files.
This commit is contained in:
22
ConstructorApp.DtoLayer/ProjectDto/ResultProjectDto.cs
Normal file
22
ConstructorApp.DtoLayer/ProjectDto/ResultProjectDto.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using static ConstructorApp.EntityLayer.Entities.Project;
|
||||
|
||||
namespace ConstructorApp.DtoLayer.ProjectDto
|
||||
{
|
||||
public class ResultProjectDto
|
||||
{
|
||||
public int ProjectID { get; set; }
|
||||
public string? CoverUrl { get; set; }
|
||||
public DateOnly Date { get; set; }
|
||||
public string? Title { get; set; }
|
||||
public string? Location { get; set; }
|
||||
public string? ShortDescription { get; set; } //Exterior design
|
||||
public string? LongDescription { get; set; }
|
||||
public string? GoogleMapIFrame { get; set; }
|
||||
public string? VideoUrl { get; set; }
|
||||
public string? FloorPlanUrl { get; set; }
|
||||
public bool IsActive { get; set; } //0=Pasif 1=Aktif
|
||||
public string? Slug { get; set; }
|
||||
public List<string>? ImageUrls { get; set; }
|
||||
public ProjectStatus Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user