This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Cepheia.Api.Controllers | |
| open Microsoft.AspNetCore.Mvc | |
| open Microsoft.IdentityModel.Protocols.WsFederation | |
| open System.Web.Http | |
| open Microsoft.AspNetCore.Routing | |
| [<Route("api/[controller]")>] | |
| [<ApiController>] | |
| type ValuesController () = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| public class Item | |
| { | |
| [JsonProperty("id")] | |
| public int id { get; set; } | |
| [JsonProperty("owner_id")] | |
| public int owner_id { get; set; } |