Files
Disco/Disco.Web/Areas/API/Models/Attachment/AttachmentsModel.cs
T
2013-02-28 17:15:46 +11:00

13 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Disco.Web.Areas.API.Models.Attachment
{
public class AttachmentsModel
{
public List<_AttachmentModel> Attachments { get; set; }
public string Result { get; set; }
}
}