15 lines
398 B
C#
15 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelper.Infrastructure.Strings
|
|
{
|
|
internal static class ErrorStrings
|
|
{
|
|
public static string ObjectTypeIsUnknown => "#0001: Object type is unknown";
|
|
public static string MaterialTypeIsUnknown => "#0002: Material type is unknown";
|
|
}
|
|
}
|