Files
Disco/Disco.Web/Areas/API/Models/Job/CommentsModel.cs
T
2013-02-01 12:35:28 +11:00

13 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Disco.Web.Areas.API.Models.Job
{
public class CommentsModel
{
public string Result { get; set; }
public List<_CommentModel> Comments { get; set; }
}
}