chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ContentSafety.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Request model for chat endpoint.
|
||||
/// </summary>
|
||||
public class ChatModel
|
||||
{
|
||||
[Required]
|
||||
public string Message { get; set; }
|
||||
|
||||
public List<string>? Documents { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user