Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created October 7, 2018 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/a4dcdec99911d2daeff4ea6dce0d99b6 to your computer and use it in GitHub Desktop.
Save icebeam7/a4dcdec99911d2daeff4ea6dce0d99b6 to your computer and use it in GitHub Desktop.
StoreWebApi: OrderStatusDTO.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace StoreWebApi.DTOs
{
public class OrderStatusDTO
{
public int Id { get; set; }
public string Name { get; set; }
public List<CustomerOrderDTO> CustomerOrder { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment