17 lines
425 B
C#
17 lines
425 B
C#
using System;
|
|
|
|
public class ChatRequest
|
|
{
|
|
public string SessionId { get; set; } = string.Empty;
|
|
public string ProjectId { get; set; } = string.Empty;
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|
|
|
|
|
|
public class VideoSummaryRequest
|
|
{
|
|
public string SessionId { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
public string Language { get; set; } = string.Empty;
|
|
}
|