namespace Managing.Domain.Accounts;
///
/// Domain model for swap operation information
///
public class SwapInfos
{
///
/// Whether the swap operation was successful
///
public bool Success { get; set; }
///
/// Transaction hash if successful
///
public string Hash { get; set; }
///
/// Success message
///
public string Message { get; set; }
///
/// Error message if failed
///
public string Error { get; set; }
///
/// Error type if failed
///
public string ErrorType { get; set; }
///
/// Suggestion for error resolution
///
public string Suggestion { get; set; }
}