CompetitionAPI_dotnet/CompetitionAPI/api/unity/AddContentRequest.cs

11 lines
256 B
C#

namespace CompetitionAPI.api.unity
{
public class AddContentRequest
{
public string UserId { get; set; }
public string Id { get; set; }
public string Type { get; set; }
public string Content { get; set; }
}
}