Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. ...
  2.  
  3. namespace MDM.Api.Features.V1.Sources {
  4.  
  5.    // Will be supported from version "1.0" onwards
  6.    [ApiVersions("1.0")]
  7.    [RoutePrefix("v{version:apiVersion}/sources")]
  8.    public class SourcesController : MediatorAwareController {
  9.  
  10.       [HttpGet]
  11.       public async Task<IHttpActionResult> Get() {
  12.           ...
  13.       }
  14.    }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement