sharee.bike-App/SharedBusinessLogic/Repository/Response/SubmitFeedbackResponse.cs

12 lines
243 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using Newtonsoft.Json;
using System.Runtime.Serialization;
namespace ShareeBike.Repository.Response
{
[DataContract]
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
public class SubmitFeedbackResponse : ResponseBase
{
}
}