Files
HopFrame/tests/HopFrame.Tests.Core/Models/MockModel2.cs
2025-01-19 16:00:33 +01:00

12 lines
317 B
C#

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; }
}