15 lines
307 B
C#
15 lines
307 B
C#
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; }
|
|
}
|
|
} |