Initial commit
This commit is contained in:
22
sidecar/Models/ClassInfo.cs
Normal file
22
sidecar/Models/ClassInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace ArtificersScrollwork.Sidecar.Models;
|
||||
|
||||
public record ClassInfo(
|
||||
string Name,
|
||||
string Namespace,
|
||||
string FilePath,
|
||||
string? BaseClass,
|
||||
List<string> Interfaces,
|
||||
List<PropertyInfo> Properties,
|
||||
List<MethodInfo> Methods,
|
||||
List<string> Attributes,
|
||||
bool IsGump,
|
||||
bool IsMobile,
|
||||
bool IsItem
|
||||
);
|
||||
|
||||
public record PropertyInfo(
|
||||
string Name,
|
||||
string Type,
|
||||
bool HasGetter,
|
||||
bool HasSetter
|
||||
);
|
||||
Reference in New Issue
Block a user