BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/UpdateConversationTitleModel.cs

10 lines
205 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace BotSharp.OpenAPI.ViewModels.Conversations;
public class UpdateConversationTitleModel
{
[Required]
public string NewTitle { get; set; }
}