14 lines
307 B
C#
14 lines
307 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace Weee.ViewModels
|
|||
|
{
|
|||
|
public class ReplyRequestWithFileViewModel
|
|||
|
{
|
|||
|
public int RequestID { get; set; }
|
|||
|
public string FileUrl { get; set; }
|
|||
|
public decimal Value { get; set; }
|
|||
|
}
|
|||
|
}
|