14 lines
294 B
C#
14 lines
294 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace DataAccess.DTOs
|
|
{
|
|
public class RootObjectDTO : IRootObjectDTO
|
|
{
|
|
[JsonProperty("FileVersion")]
|
|
public FileVersionDTO FileVersion { get; set; }
|
|
[JsonProperty("Project")]
|
|
public ProjectDTO Project { get; set; }
|
|
|
|
}
|
|
}
|