Files
ServicesCallService/SharedLibrary/Models/RepositoryError.cs
2020-10-19 12:55:29 -04:00

15 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharedLibrary.Models
{
public class RepositoryError
{
public string Information { get; set; }
public string StackTrack { get; set; }
}
}