You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #rnx #ROBOMERGE-OWNER: jason.bestimt #ROBOMERGE-AUTHOR: ben.marsh #ROBOMERGE-SOURCE: CL 4732764 in //UE4/Main/... #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 4788599 by ben marsh in Dev-VR branch]
22 lines
500 B
C#
22 lines
500 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
using UnrealGameSyncMetadataServer.Connectors;
|
|
using UnrealGameSyncMetadataServer.Models;
|
|
|
|
namespace UnrealGameSyncMetadataServer.Controllers
|
|
{
|
|
public class LatestController : ApiController
|
|
{
|
|
public LatestData Get(string Project = null)
|
|
{
|
|
return SqlConnector.GetLastIds(Project);
|
|
}
|
|
}
|
|
}
|