14 lines
258 B
C#
Raw Normal View History

2022-02-10 00:44:02 +05:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace POCDistance.Models
{
public class ErrorModel
{
public int Status { get; set; }
public string Message { get; set; }
}
}