Added web module tests
This commit is contained in:
12
tests/HopFrame.Tests.Core/Models/MockModel2.cs
Normal file
12
tests/HopFrame.Tests.Core/Models/MockModel2.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace HopFrame.Tests.Core.Models;
|
||||
|
||||
public class MockModel2 {
|
||||
[Key]
|
||||
public required string Id { get; set; }
|
||||
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public int Number { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user