Add the datacontract model to have less data on some call

This commit is contained in:
Sébastien André
2021-04-19 18:32:44 +02:00
parent f671d0b1d0
commit 9a7b2c5ca3
6 changed files with 51 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
namespace skydiveLogs_api.DataContract
{
public class DropZoneSimpleResp
{
public int Id { get; set; }
public string Name { get; set; }
public IEnumerable<string> Type { get; set; }
public bool IsFavorite { get; set; }
}
}