Files
AOW4/WebAssembly/Data/TechStack.cs
T

10 lines
249 B
C#

namespace WebAssembly.Data;
public class TechStack
{
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public string? ExtendedNotes { get; set; }
public bool InUse { get; set; } = false;
}