Initial commit
This commit is contained in:
commit
ef3b7d68fb
30 changed files with 1568 additions and 0 deletions
15
Domain/Tile.cs
Normal file
15
Domain/Tile.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using StitchATon2.Infra;
|
||||
|
||||
namespace StitchATon2.Domain;
|
||||
|
||||
public class Tile
|
||||
{
|
||||
public required int Id { get; init; }
|
||||
|
||||
public required int Column { get; init; }
|
||||
public required int Row { get; init; }
|
||||
|
||||
public required string Coordinate { get; init; }
|
||||
|
||||
public required ImageIntegral Integral { get; init; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue