10 lines
201 B
C#
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;
|
|
} |