188 Star 493 Fork 215

李玉宝/BestQA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CreateAnswerCmd.cs 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
李玉宝 提交于 10年前 . 分离元数据项目;
// ***********************************************************************
// Assembly : BestQA.Commands
// Author : yubaolee
// Created : 07-10-2015
//
// Last Modified By : yubaolee
// Last Modified On : 07-10-2015
// ***********************************************************************
// <copyright file="CreateAnswerCmd.cs" company="Microsoft">
// Copyright (c) Microsoft. All rights reserved.
// </copyright>
// <summary>创建回答命令</summary>
// ***********************************************************************
using System;
using ENode.Commanding;
namespace BestQA.Commands
{
[Serializable]
public class CreateAnswerCmd :Command<String>
{
public CreateAnswerCmd(string content, string userid, string answerto)
{
Content = content;
UserId = userid;
AnswerTo = answerto;
}
public string Content { get; set; }
public string UserId { get; set; }
public string AnswerTo { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/yubaolee/BestQA.git
git@gitee.com:yubaolee/BestQA.git
yubaolee
BestQA
BestQA
master

搜索帮助