2025-11-28 00:35:46 +09:00

24 lines
538 B
C#

//
// <copyright file="ChatReceivedEventArgs.cs" company="Microsoft">
// Copyright (C) Microsoft. All rights reserved.
// </copyright>
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ChatObjectModel
{
public class ChatReceivedEventArgs : EventArgs
{
public string Text { get; set; }
public string User { get; set; }
public ChatReceivedEventArgs(string user, string text)
{
User = user;
Text = text;
}
}
}