24 lines
484 B
C#
24 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudGaming.Core.AgileConfig.AgileConfigApi
|
|
{
|
|
public class AgileConfigApiVM
|
|
{
|
|
public bool IsPatch { get; set; }
|
|
public string Json { get; set; }
|
|
}
|
|
|
|
|
|
public class AgileConfigPublishVM
|
|
{
|
|
public string log { get; set; }
|
|
public string appId { get; set; }
|
|
public object[] ids { get; set; }
|
|
}
|
|
|
|
}
|