10 lines
242 B
C#
10 lines
242 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Disco.Web.Areas.API.Models.Attachment
|
|
{
|
|
public class AttachmentsModel
|
|
{
|
|
public List<_AttachmentModel> Attachments { get; set; }
|
|
public string Result { get; set; }
|
|
}
|
|
} |