NewGaoKaoApi/New_College.Model/ViewModels/Query/FeedBackRequest.cs

16 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels.Query
{
public class FeedBackRequest
{
public int CustomerId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
}
}