Files
HopFrame/tests/HopFrame.Tests.Core/TestModel.cs
Leon Hoppe b2a029d50b
All checks were successful
HopFrame CI / build (push) Successful in 2m10s
HopFrame CI / test (push) Successful in 1m27s
Added configurators
2026-02-22 19:32:33 +01:00

10 lines
192 B
C#

namespace HopFrame.Tests.Core;
public class TestModel {
public int Id { get; set; }
public string Name { get; set; }
public int Method() => 42;
public int FieldBacking;
}