Files
Leon Hoppe ff2634ff41
All checks were successful
HopFrame CI / build (push) Successful in 44s
HopFrame CI / test (push) Successful in 52s
Started working on frontend
2026-02-25 16:33:46 +01:00

10 lines
201 B
C#

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