15 lines
277 B
C#
Raw Normal View History

2023-05-11 23:11:39 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SPTInstaller.Interfaces
{
public interface IResult
{
public bool Succeeded { get; }
public string Message { get; }
}
}