Files
Disco/Disco.Web/Areas/API/Models/Job/CommentsModel.cs
T
2024-12-14 16:55:37 +11:00

10 lines
226 B
C#

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