13 lines
404 B
C#
13 lines
404 B
C#
namespace Marco.Pms.Model.ViewModels.Forum
|
|
{
|
|
public class TicketAttachmentVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid TicketId { get; set; }
|
|
public Guid? CommentId { get; set; }
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string? PreSignedUrl { get; set; }
|
|
public string ThumbPreSignedUrl { get; set; } = string.Empty;
|
|
}
|
|
}
|